Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cesium/krone
Website of the Pedagogical Department
https://github.com/cesium/krone
Last synced: 16 days ago
JSON representation
Website of the Pedagogical Department
- Host: GitHub
- URL: https://github.com/cesium/krone
- Owner: cesium
- License: mit
- Created: 2020-03-21T01:11:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-28T01:14:44.000Z (over 3 years ago)
- Last Synced: 2023-04-04T00:41:42.517Z (almost 2 years ago)
- Language: HTML
- Homepage: https://cesium.github.io/krone/
- Size: 2.63 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# krone
Website of the Pedagogical Department## Advanced: Local development using Docker
Beautiful Jekyll is meant to be so simple to use that you can do it all within the browser. However, if you'd like to develop locally on your own machine, that's possible too if you're comfortable with command line. Follow these simple steps set that up with Docker:
1. Make sure you have [Docker](https://www.docker.com/) installed.
2. Clone your repository locally.
```bash
git clone https://github.com//.github.io.git
```3. Run the following shell commands to build the docker image and start the container for the first time:
```bash
cd
docker build -t beautiful-jekyll "$PWD"
docker run -d -p 4000:4000 --name beautiful-jekyll -v "$PWD":/srv/jekyll beautiful-jekyll
```Now that Docker is set up, you do not need to run the above steps again. You can now view your website at http://localhost:4000/. You can start the container again in the future with:
```bash
docker start beautiful-jekyll
```And you can stop the server with:
```bash
docker stop beautiful-jekyll
```Whenever you make any changes to `_config.yml`, you must stop and re-start the server for the new config settings to take effect.