2013-08-16 14:55:28 +04:00
{{cookiecutter.project_name}}
==============================
{{cookiecutter.description}}
2013-08-29 10:57:20 +04:00
LICENSE: BSD
2013-08-19 22:32:07 +04:00
2013-10-25 18:59:48 +04:00
Settings
------------
2014-03-22 19:16:11 +04:00
{{cookiecutter.project_name}} relies extensively on environment settings which **will not work with Apache/mod_wsgi setups** . It has been deployed successfully with both Gunicorn/Nginx and even uWSGI/Nginx.
2013-10-25 18:59:48 +04:00
2014-03-22 19:16:11 +04:00
For configuration purposes, the following table maps the '{{cookiecutter.project_name}}' environment variables to their Django setting:
2013-10-25 18:59:48 +04:00
2015-05-19 19:20:52 +03:00
======================================= =========================== ============================================== ======================================================================
2013-11-26 01:42:40 +04:00
Environment Variable Django Setting Development Default Production Default
2015-05-19 19:20:52 +03:00
======================================= =========================== ============================================== ======================================================================
2015-07-06 13:43:26 +03:00
DJANGO_CACHES CACHES (default) locmem redis
2015-04-20 00:09:00 +03:00
DJANGO_DATABASES DATABASES (default) See code See code
2013-11-26 01:42:40 +04:00
DJANGO_DEBUG DEBUG True False
DJANGO_SECRET_KEY SECRET_KEY CHANGEME!!! raises error
DJANGO_SECURE_BROWSER_XSS_FILTER SECURE_BROWSER_XSS_FILTER n/a True
DJANGO_SECURE_SSL_REDIRECT SECURE_SSL_REDIRECT n/a True
DJANGO_SECURE_CONTENT_TYPE_NOSNIFF SECURE_CONTENT_TYPE_NOSNIFF n/a True
DJANGO_SECURE_FRAME_DENY SECURE_FRAME_DENY n/a True
DJANGO_SECURE_HSTS_INCLUDE_SUBDOMAINS HSTS_INCLUDE_SUBDOMAINS n/a True
DJANGO_SESSION_COOKIE_HTTPONLY SESSION_COOKIE_HTTPONLY n/a True
DJANGO_SESSION_COOKIE_SECURE SESSION_COOKIE_SECURE n/a False
2015-05-19 19:20:52 +03:00
DJANGO_DEFAULT_FROM_EMAIL DEFAULT_FROM_EMAIL n/a "{{cookiecutter.project_name}} <noreply@{{cookiecutter.domain_name}}>"
2015-07-06 21:23:12 +03:00
DJANGO_SERVER_EMAIL SERVER_EMAIL n/a "{{cookiecutter.project_name}} <noreply@{{cookiecutter.domain_name}}>"
2015-07-07 22:06:46 +03:00
DJANGO_EMAIL_SUBJECT_PREFIX EMAIL_SUBJECT_PREFIX n/a "[{{cookiecutter.project_name}}] "
2015-05-19 19:20:52 +03:00
======================================= =========================== ============================================== ======================================================================
2013-10-25 18:59:48 +04:00
2015-07-06 21:23:12 +03:00
The following table lists settings and their defaults for third-party applications:
======================================= =========================== ============================================== ======================================================================
Environment Variable Django Setting Development Default Production Default
======================================= =========================== ============================================== ======================================================================
2015-07-07 22:06:46 +03:00
DJANGO_AWS_ACCESS_KEY_ID AWS_ACCESS_KEY_ID n/a raises error
DJANGO_AWS_SECRET_ACCESS_KEY AWS_SECRET_ACCESS_KEY n/a raises error
DJANGO_AWS_STORAGE_BUCKET_NAME AWS_STORAGE_BUCKET_NAME n/a raises error
2015-07-27 18:42:23 +03:00
{% if cookiecutter.use_sentry == "y" -%}DJANGO_SENTRY_DSN SENTRY_DSN n/a raises error
DJANGO_SENTRY_CLIENT SENTRY_CLIENT n/a raven.contrib.django.raven_compat.DjangoClient
DJANGO_SENTRY_LOG_LEVEL SENTRY_LOG_LEVEL n/a logging.INFO{%- endif %}
2015-07-07 22:06:46 +03:00
DJANGO_MAILGUN_API_KEY MAILGUN_ACCESS_KEY n/a raises error
DJANGO_MAILGUN_SERVER_NAME MAILGUN_SERVER_NAME n/a raises error
2015-07-06 21:23:12 +03:00
======================================= =========================== ============================================== ======================================================================
2013-10-25 18:59:48 +04:00
2014-03-22 19:16:11 +04:00
Getting up and running
----------------------
2013-11-12 19:58:28 +04:00
2015-06-29 00:42:51 +03:00
Basics
^^^^^^
2014-03-22 19:16:11 +04:00
The steps below will get you up and running with a local development environment. We assume you have the following installed:
2013-11-12 19:58:28 +04:00
2014-03-22 19:16:11 +04:00
* pip
* virtualenv
* PostgreSQL
2013-11-12 19:58:28 +04:00
2014-03-22 19:16:11 +04:00
First make sure to create and activate a virtualenv_, then open a terminal at the project root and install the requirements for local development::
2013-11-12 19:58:28 +04:00
2014-03-22 19:16:11 +04:00
$ pip install -r requirements/local.txt
2014-01-10 01:03:28 +04:00
2014-03-22 19:16:11 +04:00
.. _virtualenv: http://docs.python-guide.org/en/latest/dev/virtualenvs/
2014-01-10 01:03:28 +04:00
2015-06-29 00:14:34 +03:00
Create a local PostgreSQL database::
$ createdb {{ cookiecutter.repo_name }}
2015-06-29 00:28:58 +03:00
Run `` migrate `` on your new database::
$ python manage.py migrate
2014-12-02 03:04:49 +03:00
You can now run the `` runserver_plus `` command::
2014-01-10 01:03:28 +04:00
2015-04-24 15:12:34 +03:00
$ python manage.py runserver_plus
2014-01-10 01:03:28 +04:00
2015-06-29 00:55:25 +03:00
Open up your browser to http://127.0.0.1:8000/ to see the site running locally.
2015-06-29 00:42:51 +03:00
Setting Up Your Users
^^^^^^^^^^^^^^^^^^^^^
2015-06-29 00:55:25 +03:00
To create a **normal user account** , just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.
To create an **superuser account** , use this command::
2015-06-29 00:42:51 +03:00
2015-06-29 00:55:25 +03:00
$ python manage.py createsuperuser
2014-03-22 19:16:11 +04:00
2015-06-29 00:55:25 +03:00
For convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.
2014-03-22 19:16:11 +04:00
2015-08-04 08:20:12 +03:00
Test coverage
^^^^^^^^^^^^^
To run the tests, check your test coverage, and generate an HTML coverage report::
$ coverage run manage.py test
2015-08-04 08:30:58 +03:00
$ coverage html
2015-08-04 08:31:39 +03:00
$ open htmlcov/index.html
2015-08-04 08:20:12 +03:00
2015-06-29 00:42:51 +03:00
Live reloading and Sass CSS compilation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2014-03-22 19:16:11 +04:00
2015-07-14 01:50:00 +03:00
If you'd like to take advantage of live reloading and Sass / Compass CSS compilation you can do so with a little bit of prep work.
2014-03-22 19:16:11 +04:00
Make sure that nodejs_ is installed. Then in the project root run::
2015-07-14 01:39:51 +03:00
$ npm install
2014-03-22 19:16:11 +04:00
.. _nodejs: http://nodejs.org/download/
2015-07-14 01:50:00 +03:00
If you don't already have it, install `compass` (doesn't hurt if you run this command twice)::
gem install compass
2014-03-22 19:16:11 +04:00
Now you just need::
$ grunt serve
The base app will now run as it would with the usual `` manage.py runserver `` but with live reloading and Sass compilation enabled.
To get live reloading to work you'll probably need to install an `appropriate browser extension`_
.. _appropriate browser extension: http://feedback.livereload.com/knowledgebase/articles/86242-how-do-i-install-and-use-the-browser-extensions-
2014-10-12 12:32:17 +04:00
{% if cookiecutter.use_celery == "y" %}
Celery
^^^^^^
This app comes with Celery.
To run a celery worker:
.. code-block :: bash
cd {{cookiecutter.repo_name}}
celery -A {{cookiecutter.repo_name}} worker -l info
Please note: For Celerys import magic to work, it is important *where* the celery commands are run. If you are in the same folder with *manage.py* , you should be right.
{% endif %}
2015-07-16 07:21:06 +03:00
{% if cookiecutter.use_maildump == "y" %}
2015-07-08 01:12:51 +03:00
Email Server
^^^^^^^^^^^^
In development, it is often nice to be able to see emails that are being sent from your application. For this purpose,
a Grunt task exists to start an instance of `maildump`_ which is a local SMTP server with an online interface.
2015-07-08 01:16:18 +03:00
.. _maildump: https://github.com/ThiefMaster/maildump
2015-07-08 01:12:51 +03:00
Make sure you have nodejs installed, and then type the following::
$ grunt start-email-server
This will start an email server. The project is setup to deliver to the email server by default. To view messages
that are sent by your application, open your browser to http://127.0.0.1:1080
To stop the email server::
$ grunt stop-email-server
The email server listens on 127.0.0.1:1025
2015-07-16 07:21:06 +03:00
{% endif %}
2015-07-27 18:42:23 +03:00
{% if cookiecutter.use_sentry == "y" %}
Sentry
^^^^^^
Sentry is an error logging aggregator service. You can sign up for a free account at http://getsentry.com or download and host it yourself.
The system is setup with reasonable defaults, including 404 logging and integration with the WSGI application.
You must set the DSN url in production.
{% endif %}
2015-07-08 01:12:51 +03:00
2014-03-22 19:16:11 +04:00
It's time to write the code!!!
2014-01-10 01:03:28 +04:00
2013-10-25 18:59:48 +04:00
2013-08-19 22:32:07 +04:00
Deployment
------------
2015-04-20 00:09:00 +03:00
It is possible to deploy to Heroku or to your own server by using Dokku, an open source Heroku clone.
2014-10-12 18:59:17 +04:00
Heroku
^^^^^^
2013-10-03 12:08:03 +04:00
Run these commands to deploy the project to Heroku:
.. code-block :: bash
2014-01-10 01:03:28 +04:00
heroku create --buildpack https://github.com/heroku/heroku-buildpack-python
2015-04-26 08:31:22 +03:00
2015-07-18 22:48:04 +03:00
heroku addons:create heroku-postgresql:hobby-dev
heroku pg:backups schedule --at '02:00 America/Los_Angeles' DATABASE_URL
2015-04-26 08:06:25 +03:00
heroku pg:promote DATABASE_URL
2015-04-26 08:31:22 +03:00
2015-07-06 13:43:26 +03:00
heroku addons:create heroku-redis:hobby-dev
2015-07-06 21:23:12 +03:00
heroku addons:create mailgun
2015-04-26 08:31:22 +03:00
2015-07-18 23:13:49 +03:00
heroku config:set DJANGO_SECRET_KEY=`openssl rand -base64 32`
2015-04-24 15:12:34 +03:00
heroku config:set DJANGO_SETTINGS_MODULE='config.settings.production'
2015-04-26 08:31:22 +03:00
2014-05-02 23:49:26 +04:00
heroku config:set DJANGO_AWS_ACCESS_KEY_ID=YOUR_AWS_ID_HERE
heroku config:set DJANGO_AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY_HERE
heroku config:set DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
2015-04-26 08:31:22 +03:00
2015-07-07 22:29:41 +03:00
heroku config:set DJANGO_MAILGUN_SERVER_NAME=YOUR_MALGUN_SERVER
2015-07-18 22:48:04 +03:00
heroku config:set DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY
2015-07-18 23:09:59 +03:00
heroku config:set PYTHONHASHSEED=random
2013-10-03 12:08:03 +04:00
git push heroku master
2015-04-24 15:12:34 +03:00
heroku run python manage.py migrate
2015-04-26 19:41:32 +03:00
heroku run python manage.py check --deploy
2015-04-24 15:12:34 +03:00
heroku run python manage.py createsuperuser
2014-03-22 19:16:11 +04:00
heroku open
2014-05-02 23:49:26 +04:00
2014-10-12 18:59:17 +04:00
Dokku
^^^^^
You need to make sure you have a server running Dokku with at least 1GB of RAM. Backing services are
2015-04-20 00:09:00 +03:00
added just like in Heroku however you must ensure you have the relevant Dokku plugins installed.
2014-10-12 18:59:17 +04:00
.. code-block :: bash
cd /var/lib/dokku/plugins
git clone https://github.com/rlaneve/dokku-link.git link
2015-07-06 13:43:26 +03:00
git clone https://github.com/luxifer/dokku-redis-plugin redis
2014-10-12 18:59:17 +04:00
git clone https://github.com/jezdez/dokku-postgres-plugin postgres
dokku plugins-install
You can specify the buildpack you wish to use by creating a file name .env containing the following.
.. code-block :: bash
export BUILDPACK_URL=<repository>
You can then deploy by running the following commands.
.. code-block :: bash
2014-10-12 19:07:02 +04:00
2014-10-12 18:59:17 +04:00
git remote add dokku dokku@yourservername.com:{{cookiecutter.repo_name}}
git push dokku master
2015-07-06 13:43:26 +03:00
ssh -t dokku@yourservername.com dokku redis:create {{cookiecutter.repo_name}}-redis
ssh -t dokku@yourservername.com dokku redis:link {{cookiecutter.repo_name}}-redis {{cookiecutter.repo_name}}
2014-10-12 18:59:17 +04:00
ssh -t dokku@yourservername.com dokku postgres:create {{cookiecutter.repo_name}}-postgres
ssh -t dokku@yourservername.com dokku postgres:link {{cookiecutter.repo_name}}-postgres {{cookiecutter.repo_name}}
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_SECRET_KEY=RANDOM_SECRET_KEY_HERE
2015-04-24 15:12:34 +03:00
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_SETTINGS_MODULE='config.settings.production'
2014-10-12 18:59:17 +04:00
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_AWS_ACCESS_KEY_ID=YOUR_AWS_ID_HERE
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY_HERE
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
2015-07-07 22:29:41 +03:00
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_MAILGUN_API_KEY=YOUR_MAILGUN_API_KEY
ssh -t dokku@yourservername.com dokku config:set {{cookiecutter.repo_name}} DJANGO_MAILGUN_SERVER_NAME=YOUR_MAILGUN_SERVER
2015-04-24 15:12:34 +03:00
ssh -t dokku@yourservername.com dokku run {{cookiecutter.repo_name}} python manage.py migrate
ssh -t dokku@yourservername.com dokku run {{cookiecutter.repo_name}} python manage.py createsuperuser
2014-10-12 19:13:48 +04:00
When deploying via Dokku make sure you backup your database in some fashion as it is NOT done automatically.