-`virtualenv env` to create new virtualenv (contains clean python working environment)
-`virtualenv env` to create new virtualenv (contains clean python working environment)
-`. env/bin/activate` (to start using virtualenv)
-`. env/bin/activate` (to start using virtualenv)
-`pip install -r requirements.txt` to install project's dependencies
-`pip install -r requirements.txt` to install project's dependencies
- Create `local_settings.py` file in `(./scheduling-system)/smash/smash` directory (see template below), and change your database connection data:
- Create `local_settings.py` file in `(./scheduling-system)/smash/smash` directory by copying the template in `(./scheduling-system)/smash/smash/local_settings.template` and edit your local_setttings.py file to change your database connection data.
```
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'Paste long random string here' # Insert long random string
# SECURITY WARNING: don't run with debug turned on in production!