blob: 2fd43849032d2752cc24febce46c53f609a5c34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copenhagen Rust Community website
Static site built with [Zola][].
## Updating an event
The `events.toml` file stores all the events. Edit the file in a pull request
(using the GitHub web editor is fine). Once merged, the site will automatically
deploy a new version.
## Local development
1. Clone the repository.
2. [Install][] Zola.
3. Run the site in preview mode:
zola serve
Note: The `events.toml` file is only loaded on startup and changes to it will
not trigger live reload.
[Zola]: https://www.getzola.org/documentation/getting-started/overview/
[Install]: https://www.getzola.org/documentation/getting-started/installation/
|