Skip to content
Snippets Groups Projects
README.md 886 B
Newer Older
Jiri Vlasak's avatar
Jiri Vlasak committed
# OSY web pages
This repository contains web pages of [OSY course][1].

Jiri Vlasak's avatar
Jiri Vlasak committed
[1]: http://osy.pages.fel.cvut.cz/

# Develop

You may run the pages locally with docker. From `hugo` directory, run:

```
docker run --rm -e HUGO_WATCH=1 -e HUGO_THEME=book -p 1313:1313 \
    --name "hugo" -P -v $(pwd):/src jojomi/hugo
```

Jiri Vlasak's avatar
Jiri Vlasak committed
# Contribute
Use [Merge Requests][] to propose changes. Don't forget to write [great git
commit messages][]:
Jiri Vlasak's avatar
Jiri Vlasak committed

1. Separate subject from body with a blank line.
2. Limit the subject line to 50 characters.
3. Capitalize the subject line.
4. Do not end the subject line with a period.
5. Use the imperative mood in the subject line.
6. Wrap the body at 72 characters.
7. Use the body to explain what and why vs. how.

[Merge Requests]: https://gitlab.fel.cvut.cz/osy/osy.pages.fel.cvut.cz/-/merge_requests
Jiri Vlasak's avatar
Jiri Vlasak committed
[great git commit messages]: https://chris.beams.io/posts/git-commit/