Skip to content

Jumia/techblog

Repository files navigation

Jumia Tech Blog

Software License

Source code of https://tech.jumia.com/.

Usage

Quick setup with docker

$ git clone https://github.com/JumiaGroup/techblog.git tech.jumia.com
$ cd tech.jumia.com
$ docker run --rm --label=jekyll --volume=$(pwd):/srv/jekyll -it -p 4000:4000 jekyll/jekyll:4.2.2 jekyll serve
# => Now browse to http://localhost:4000

Production env

Add -e JEKYLL_ENV='production' to the run command

$ docker run --rm --label=jekyll --volume=$(pwd):/srv/jekyll -it -e JEKYLL_ENV='production' -p 4000:4000 jekyll/jekyll:4.2.2 jekyll serve

OR installing jekyll

Install Jekyll using info provided in https://jekyllrb.com/

$ git clone https://github.com/JumiaGroup/techblog.git tech.jumia.com
$ cd tech.jumia.com
$ bundle exec jekyll serve
# => Now browse to http://localhost:4000

Dependencies

  • Jekyll
  • Docker (optional)

Contributing

Contributions are welcome and will be fully credited.
You can contribute with new posts or pages but feel free to contribute with design/development changes as well.

Check contributing guidelines.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.