https://github.com/waikato-datamining/adams-website
Source code for the ADAMS website. Uses Nikola, the static site generator.
https://github.com/waikato-datamining/adams-website
nikola website
Last synced: 2 months ago
JSON representation
Source code for the ADAMS website. Uses Nikola, the static site generator.
- Host: GitHub
- URL: https://github.com/waikato-datamining/adams-website
- Owner: waikato-datamining
- License: cc-by-sa-4.0
- Created: 2017-09-01T22:51:06.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-07-23T02:33:44.000Z (4 months ago)
- Last Synced: 2025-07-23T04:20:52.871Z (4 months ago)
- Topics: nikola, website
- Language: Python
- Homepage: https://adams.cms.waikato.ac.nz/
- Size: 8.86 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# adams-website
Source code for the [ADAMS](https://adams.cms.waikato.ac.nz/) website.
Uses [Nikola](https://getnikola.com/), the static site generator.
## Nikola setup
* virtual environment
```bash
virtualenv -p /usr/bin/python3 venv
```
* install packages and plugins
```bash
./venv/bin/pip install nikola micawber ruamel.yaml
./venv/bin/nikola plugin -i slides
```
## Build and deploy
* build and serve (locally)
```bash
./venv/bin/nikola clean && ./venv/bin/nikola build && ./venv/bin/nikola serve
```
* deploy
```bash
./venv/bin/nikola deploy
```