The developer hub of Karakun AG
The developer community page of Karakun AG provides instructions for building the page locally and running it on a server. The instructions recommend using docker-compose for easy setup. Additionally, the page mentions the use of Jekyll, a static site generator, for local inspection and preview of markdown files. It also explains how to work with drafts and future posts.
To build the page locally using docker-compose:
docker-compose up
This will start a server that runs the page and forwards it to localhost:4000.
To start Jekyll on your machine for local inspection:
brew install ruby
To start a server for local inspection of your markdown files using Jekyll:
./start.sh
To work with drafts:
jekyll serve --drafts
or
jekyll build --drafts
To work with future posts:
jekyll serve --future
or
jekyll build --future
The developer community page of Karakun AG provides instructions for building the page locally and running it on a server. It recommends using Docker Compose for easy setup and Jekyll for local inspection and preview of markdown files. Additionally, it explains how to work with drafts and future posts, allowing developers to create posts that are still being worked on and schedule posts for future publication.