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: 16 days 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-06-16T21:05:01.000Z (20 days ago)
- Last Synced: 2025-06-16T21:43:25.043Z (20 days ago)
- Topics: nikola, website
- Language: Python
- Homepage: https://adams.cms.waikato.ac.nz/
- Size: 8.81 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
```