- clone CodeGate
- move to CodeGate project root directory
cd CodeGate/
- clone static
git clone https://github.com/jordangumm/static
- move to django project root directory
cd mysite/
- migrate apps
python manage.py makemigrations news beta
- migrate project
python manage.py migrate
- load deflategate data from NYTimes
python manage.py load_deflategate_data
- host locally for testing
python manage.py runserver
- load given url in browser!
If the result doesn't have any noticable styling, the static files directory is probably not being referenced. Adding your local path to the static directory under the settings.py STATICFILES_DIRS attribute should fix this.