Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mplacona/realkotlin.com
The repo for https://www.realkotlin.com
https://github.com/mplacona/realkotlin.com
Last synced: 7 days ago
JSON representation
The repo for https://www.realkotlin.com
- Host: GitHub
- URL: https://github.com/mplacona/realkotlin.com
- Owner: mplacona
- License: cc-by-sa-4.0
- Created: 2018-04-03T20:26:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T09:20:20.000Z (about 2 months ago)
- Last Synced: 2024-09-09T10:53:15.993Z (about 2 months ago)
- Language: HTML
- Size: 2.72 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
This is the repository for [RealKotlin.com](https://www.realkotlin.com)## Contact
- [Twitter](https://twitter.com/marcos_placona)
- [Github](https://github.com/mplacona)
- [Blog](https://www.placona.co.uk)## Running with Docker
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](http://127.0.0.1:4003).## Running Locally - AKA the hard way
1. Clone this repository.
2. [Install Jekyll](https://jekyllrb.com/docs/installation/) if you don't already have it.
3. Run the project from your terminal by issuing `jekyll serve --watch --incremental --verbose --trace`
4. Head to [http://localhost:4003](http://localhost:4003)## Contributing
I would ❤️ some contributions from other authors here. Just follow these stepsPosts are automatically generated after each example in [RealKotlinTips](https://github.com/mplacona/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](https://github.com/mplacona/RealKotlinTips#contributing) in that project to learn more.