├── .env ├── .gitignore ├── .idea ├── django-heroku-production.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Procfile ├── README.md ├── __pycache__ └── custom_storages.cpython-35.pyc ├── app ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── 404.html │ ├── 500.html │ └── app │ │ ├── base.html │ │ └── footer.html ├── tests.py ├── urls.py └── views.py ├── custom_storages.py ├── db.sqlite3 ├── easy_deploy ├── deploy.bat ├── local.bat └── update.bat ├── manage.py ├── project ├── __init__.py ├── local-settings.py ├── settings.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── images │ │ └── social │ │ │ ├── facebook.png │ │ │ ├── linkedin.png │ │ │ └── twitter.png │ └── js │ │ └── jquery-2.2.4.js ├── urls.py └── wsgi.py ├── requirements.txt └── runtime.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/django-heroku-production.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.idea/django-heroku-production.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn project.wsgi 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/custom_storages.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/__pycache__/custom_storages.cpython-35.pyc -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/app/admin.py -------------------------------------------------------------------------------- /app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/app/apps.py -------------------------------------------------------------------------------- /app/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/app/models.py -------------------------------------------------------------------------------- /app/templates/404.html: -------------------------------------------------------------------------------- 1 |

Page Not Found!

2 | -------------------------------------------------------------------------------- /app/templates/500.html: -------------------------------------------------------------------------------- 1 |

Server Error!

2 | -------------------------------------------------------------------------------- /app/templates/app/base.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/templates/app/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/app/tests.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | 4 | -------------------------------------------------------------------------------- /custom_storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/custom_storages.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /easy_deploy/deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/easy_deploy/deploy.bat -------------------------------------------------------------------------------- /easy_deploy/local.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/easy_deploy/local.bat -------------------------------------------------------------------------------- /easy_deploy/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/easy_deploy/update.bat -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/manage.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/local-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/local-settings.py -------------------------------------------------------------------------------- /project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/settings.py -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /project/static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /project/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /project/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /project/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /project/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /project/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /project/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /project/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /project/static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /project/static/images/social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/images/social/facebook.png -------------------------------------------------------------------------------- /project/static/images/social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/images/social/linkedin.png -------------------------------------------------------------------------------- /project/static/images/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/images/social/twitter.png -------------------------------------------------------------------------------- /project/static/js/jquery-2.2.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/static/js/jquery-2.2.4.js -------------------------------------------------------------------------------- /project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/urls.py -------------------------------------------------------------------------------- /project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/project/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmancuso/django-heroku-production/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.11 --------------------------------------------------------------------------------