Skip to content

Instantly share code, notes, and snippets.

@genomics-geek
Created October 12, 2016 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genomics-geek/df62fb2aebcf1e891d21b4b2d67524c7 to your computer and use it in GitHub Desktop.
Save genomics-geek/df62fb2aebcf1e891d21b4b2d67524c7 to your computer and use it in GitHub Desktop.
Python Django requirments
# Django
django
# Configuration
dj-database-url
python-decouple
whitenoise
# Django 3rd party modules
djangorestframework
django-allauth
django-webpack-loader
# Python-PostgreSQL Database Adapter
psycopg2
# Time zones support
pytz==2016.6.1
# Import all base requirements
-r base.txt
# Django debug toolbar
# Temporary workaround to fix issue https://github.com/pydanny/cookiecutter-django/issues/827
# It will be removed when django-debug-toolbar publish the new version on pypi
-e git+https://github.com/jazzband/django-debug-toolbar.git@637b0b73bc684f6ea600dca5ca1bb1f090fcee93#egg=django-debug-toolbar
#django-debug-toolbar
# Code linter
pep8
# Import all base requirements
# Pro-tip: Try not to put anything here. Avoid dependencies in production that aren't in development.
-r base.txt
# WSGI Handler
gunicorn
# Import all base requirements
-r base.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment