├── .gitignore ├── .travis.yml ├── README.md ├── fabfile ├── __init__.py ├── build.py ├── deploy.py ├── dev.py └── other.py ├── lib ├── README.md ├── __init__.py ├── gzip_assets.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── csv_to_model.py │ │ ├── geo.py │ │ ├── load_raw_model.template │ │ └── rserver.py ├── models.py ├── serializer.py └── utils.py ├── manage.py ├── project_name ├── __init__.py ├── apps │ └── __init__.py ├── gzip │ └── temp ├── settings │ ├── __init__.py │ ├── common.py │ ├── local_settings.template │ └── production.py ├── urls.py └── wsgi.py ├── requirements ├── base.txt └── python2.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/README.md -------------------------------------------------------------------------------- /fabfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/fabfile/__init__.py -------------------------------------------------------------------------------- /fabfile/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/fabfile/build.py -------------------------------------------------------------------------------- /fabfile/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/fabfile/deploy.py -------------------------------------------------------------------------------- /fabfile/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/fabfile/dev.py -------------------------------------------------------------------------------- /fabfile/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/fabfile/other.py -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/gzip_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/gzip_assets.py -------------------------------------------------------------------------------- /lib/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/management/commands/csv_to_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/management/commands/csv_to_model.py -------------------------------------------------------------------------------- /lib/management/commands/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/management/commands/geo.py -------------------------------------------------------------------------------- /lib/management/commands/load_raw_model.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/management/commands/load_raw_model.template -------------------------------------------------------------------------------- /lib/management/commands/rserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/management/commands/rserver.py -------------------------------------------------------------------------------- /lib/models.py: -------------------------------------------------------------------------------- 1 | # Stub models for Django compatibility 2 | -------------------------------------------------------------------------------- /lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/serializer.py -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/lib/utils.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/manage.py -------------------------------------------------------------------------------- /project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project_name/gzip/temp: -------------------------------------------------------------------------------- 1 | para git -------------------------------------------------------------------------------- /project_name/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from common import * -------------------------------------------------------------------------------- /project_name/settings/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/project_name/settings/common.py -------------------------------------------------------------------------------- /project_name/settings/local_settings.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/project_name/settings/local_settings.template -------------------------------------------------------------------------------- /project_name/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/project_name/settings/production.py -------------------------------------------------------------------------------- /project_name/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/project_name/urls.py -------------------------------------------------------------------------------- /project_name/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/project_name/wsgi.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/python2.txt: -------------------------------------------------------------------------------- 1 | Fabric 2 | wsgiref 3 | python-memcached 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cirlabs/django-project-template/HEAD/setup.py --------------------------------------------------------------------------------