This is the repository for RealKotlin.com
Dependencies can be a pain, but luckily Docker makes it way easier to run. From the folder you've cloned the project run the following terminal command providing you have Docker already installed:
export JEKYLL_VERSION=3.7.3 \
docker run --rm \
--volume="$PWD:/srv/jekyll" \
-p 4003:4003 \
-it jekyll/jekyll:$JEKYLL_VERSION \
jekyll serve --watch --incremental --verbose --trace --future
Now just go to http://127.0.0.1:4003.
- Clone this repository.
- Install Jekyll if you don't already have it.
- Run the project from your terminal by issuing
jekyll serve --watch --incremental --verbose --trace
- Head to http://localhost:4003
I would ❤️ some contributions from other authors here. Just follow these steps
Posts are automatically generated after each example in RealKotlinTips, which then gets converted into markdown using the metadata added in JavaDocs style at the top of each file.
Check out the contribution section in that project to learn more.