Education/Graphite site on Django via Nodejs via Drupal
This codebase runs off of python virtualenv.
# Get the source git clone git@github.com:khalib/cs-education.git education # Create the virtual environment virtualenv ./education/ cd education # Source the activate settings. source bin/activate # Install the libraries. pip install -r requirements.txt
Add this code to the top of the activate settings file in bin/activate:
DJANGO_SETTINGS_MODULE="education.settings_local" export DJANGO_SETTINGS_MODULE
Re-source the activate settings:
source bin/activate
Run the server:
python manage.py runserver