27 lines
382 B
Markdown
27 lines
382 B
Markdown
Public Health Schweiz
|
|
=====================
|
|
|
|
Website of the Swiss Society for Public Health
|
|
|
|
## Development environment
|
|
|
|
Frontend setup
|
|
|
|
```
|
|
bower install
|
|
```
|
|
|
|
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
|
|
```
|