public-health-ch/readme.md

30 lines
413 B
Markdown
Raw Normal View History

Public Health Schweiz
=====================
2016-12-12 22:43:20 +00:00
Website of the Swiss Society for Public Health
## Development environment
Backend setup
```
sudo apt-get install python3-venv python3-dev
pyvenv env
. env/bin/activate
pip install -U pip
pip install -r requirements.txt
./manage.py migrate
./manage.py createsuperuser
./manage.py runserver
2016-12-12 22:43:20 +00:00
```
2016-12-12 22:44:06 +00:00
Frontend setup
```
npm install
bower install
grunt browser-sync
```