2014-07-27 11:05:01 +02:00
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
You may (or may not) want to use a virtualenv for this.
|
|
|
|
|
|
|
|
> pip install -r requirements.txt
|
|
|
|
|
|
|
|
Do not forget to create your private_settings.py!
|
|
|
|
|
|
|
|
> cp private_settings.example.py private_settings.py
|
|
|
|
> vi private_settings.py # Enter your secrets and your database connection.
|
|
|
|
|
|
|
|
Before using in production (or development), run this:
|
|
|
|
|
|
|
|
> python manage.py collectstatic
|
|
|
|
|
|
|
|
Static files will be collected in /static, use this in your webserver configuration for production.
|