Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-19T03:15:46.000Z (4 months ago)
- Last Synced: 2024-08-19T04:29:32.806Z (4 months ago)
- Topics: nikola, website
- Language: Python
- Homepage: https://adams.cms.waikato.ac.nz/
- Size: 6.86 MB
- Stars: 2
- Watchers: 4
- 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
```