Under some operating systems, you might need to replace all python and pip commands with python3 and pip3
- Clone this repo and cd into it
- Install virtualenv with "python -m pip install --user virtualenv"
- Create a new environment with "virtualenv djangoEnv"
- Activate environment
- Linx/Mac : "source djangoEnv/bin/activate"
- Windows : "djangoEnv/Scripts\activate"
- Install required libraries with "pip install -r requirements.txt"
- Under website/biocomputingWebsite/biocomputingWebsite make a secrets.json file to setup a secret key. You can use secretsTemplate.json as a reference (but don't delete it)
- Under website/biocomputingWebsite, start the server with "python manage.py runserver"