forked from TabbycatDebate/tabbycat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the requirements/requirements_common dictinction
Given there are so few Heroku-only dependencies its not worth maintain separate files.
- Loading branch information
1 parent
9112218
commit 94ba568
Showing
9 changed files
with
57 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,41 @@ | ||
# The necessary dependencies for just heroku installs | ||
# The necessary dependencies to run Tabbycat | ||
# Some dependencies are technically Heroku-only but useful to replicate environment | ||
|
||
# Importing the base requirements | ||
-r requirements_common.txt | ||
# Mental note (cmd to check for updates): pip list --outdated --format=columns | ||
# Mental note (npm equivalent command): npm outdated | ||
|
||
# Run multiple processes in a Procfile | ||
honcho==1.0.1 | ||
# Core | ||
Django==2.0.8 # pyup: >=2.0,<2.1 | ||
django-appconf==1.0.2 # Helper for handling app configs | ||
django-dynamic-preferences==1.6 # Settings management | ||
django-extensions==2.1.0 # For the generate secret command | ||
django-formtools==2.1 # Form wizards | ||
django-ipware==2.1.0 # IP Address logging | ||
django-jet==1.0.7 # Admin Backend | ||
django-gfklookupwidget==1.0.6 # Replaces object_id field with a search link | ||
django-statici18n==1.8.2 # Compile translations files as static file | ||
django-summernote==0.8.8.7 # WYSIWYG editor | ||
munkres==1.0.12 # Algorithm for adjudicator allocation | ||
dj-cmd==1.0 # Provides the dj command alias | ||
raven==6.9.0 # Client for Sentry error tracking | ||
|
||
# Base Heroku Requirements | ||
dj-database-url==0.5.0 # From the heroku toolbelt | ||
# Database | ||
psycopg2==2.7.5 # For Django to talk to postgres | ||
sqlparse==0.2.4 # Parsing SQL statements | ||
dj-database-url==0.5.0 # To obtain the Heroku service's database URL | ||
|
||
# Serving | ||
honcho==1.0.1 # Allows a Procfile to run multiple processes | ||
waitress==1.1.0 # Primary server for wsgi | ||
|
||
# Cache | ||
django_redis==4.9.0 # Use redis for cache (on heroku; local optional) | ||
|
||
# Channels | ||
channels==2.1.2 # Channels; also includes the Daphne server | ||
channels_redis==2.2.1 # Channels Layer | ||
|
||
# Misc | ||
sendgrid==5.4.1 # Emailing | ||
sendgrid==5.4.1 # Email service of choice on Heroku | ||
scout-apm==1.2.2 # Performance monitoring | ||
ipython==6.3.1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters