├── .gitignore ├── LICENSE ├── PROJECT_README.md ├── README.md ├── app_config.py ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── settings.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── confs ├── app.ini ├── nginx.conf └── uwsgi.conf ├── core ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── crontab ├── fabfile ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── bootstrap.cpython-36.pyc │ ├── data.cpython-36.pyc │ ├── django.cpython-36.pyc │ ├── servers.cpython-36.pyc │ └── utils.cpython-36.pyc ├── bootstrap.py ├── data.py ├── django.py ├── servers.py └── utils.py ├── manage.py ├── requirements.txt └── run_on_server.sh /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/PROJECT_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/app_config.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/config/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /config/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/config/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /confs/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/confs/app.ini -------------------------------------------------------------------------------- /confs/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/confs/nginx.conf -------------------------------------------------------------------------------- /confs/uwsgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/confs/uwsgi.conf -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/admin.py -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/apps.py -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/models.py -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/tests.py -------------------------------------------------------------------------------- /core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/urls.py -------------------------------------------------------------------------------- /core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/core/views.py -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/crontab -------------------------------------------------------------------------------- /fabfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__init__.py -------------------------------------------------------------------------------- /fabfile/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/__pycache__/bootstrap.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/bootstrap.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/__pycache__/django.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/django.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/__pycache__/servers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/servers.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /fabfile/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/bootstrap.py -------------------------------------------------------------------------------- /fabfile/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/data.py -------------------------------------------------------------------------------- /fabfile/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/django.py -------------------------------------------------------------------------------- /fabfile/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/servers.py -------------------------------------------------------------------------------- /fabfile/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/fabfile/utils.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_on_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nprapps/django-starter-kit/HEAD/run_on_server.sh --------------------------------------------------------------------------------