diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..9d4c6fd --- /dev/null +++ b/README.md @@ -0,0 +1,37 @@ +# jo + +Files for my personal website. In order to get started, you need to install +[yarn](https://yarnpkg.com/) and you need a proper ruby development environment +(with bundler already installed). Then, you can simply fetch dependencies like +so: + +``` +$ yarn +$ bundle +``` + +After that, build Javascript files with: + +``` +$ yarn run webpack +``` + +And in another session start Jekyll with: + +``` +$ bundle exec jekyll serve +``` + +If you just want to **deploy**, simply run: + +``` +$ ./script/build.sh +``` + +This will write everything into a `_site` directory. Use this directory to serve +all files. + +## License + +This project is licensed under the AGPLv3. See [LICENSE](./LICENSE) for the full +license text. |
