gestiojeux/README.md
Guillaume Bertholon 2ec3c5ce05 Init Django project
2020-03-04 17:46:15 +01:00

15 lines
353 B
Markdown

# gestiojeux
Website for board games inventory and suggestions
## Install
```bash
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
cp jeulee/settings.dev.py jeulee/settings.py
$EDITOR jeulee/settings.py # Use settings that match your usecase
./manage.py migrate
./manage.py collectstatic # In production only
```