cookiecutter-django/{{cookiecutter.project_slug}}
pyup.io bot 60e57117d6 Update psycopg2 to 2.7.3 (#1247)
* Update psycopg2 from 2.7.2 to 2.7.3

* Update psycopg2 from 2.7.2 to 2.7.3

* Update psycopg2 from 2.7.2 to 2.7.3
2017-07-26 09:20:21 +02:00
..
.ebextensions Updated aws cache type to t2.micro (#1067) 2017-03-04 12:37:26 -08:00
.idea Updated idea run configurations to work as explained in the docs (#1223) 2017-07-09 16:04:27 +03:00
{{cookiecutter.project_slug}} Revert "Node.JS + docker-compose = ♥" (#1206) 2017-06-21 23:12:22 +03:00
compose Rename dev.yml to local.yml (#1227) 2017-07-14 17:09:41 +03:00
config Setting up new project with mailhog without docker breaks use of mailhog (#553) 2017-06-26 22:21:32 +03:00
docs Rename dev.yml to local.yml (#1227) 2017-07-14 17:09:41 +03:00
requirements Update psycopg2 to 2.7.3 (#1247) 2017-07-26 09:20:21 +02:00
utility Remove Python 2.7 support per #1129 (#1130) 2017-04-21 12:31:45 -07:00
.coveragerc Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.dockerignore Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.editorconfig Update nginx.conf (#808) 2016-09-20 23:22:47 +02:00
.gitattributes Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.gitignore Revert "Node.JS + docker-compose = ♥" (#1206) 2017-06-21 23:12:22 +03:00
.pylintrc Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.travis.yml Remove Python 2.7 support per #1129 (#1130) 2017-04-21 12:31:45 -07:00
CONTRIBUTORS.txt Add spaces around templated author name 2016-08-24 15:48:03 -07:00
COPYING Add GPLv3 licence support 2016-06-24 16:59:55 +02:00
ebsetenv.py Now includes message for missing .env file. Fixed #819 2016-09-29 01:43:48 -03:00
env.example include DJANGO_READ_DOT_ENV_FILE on env.example 2017-01-09 15:53:30 -03:00
Gruntfile.js Automatic recompilation of Bootstrap with user-defined variables (#1181) 2017-06-12 19:38:00 +03:00
gulpfile.js Change to process *.scss instead of only project.scss. (#1209) 2017-06-26 22:52:40 +03:00
LICENSE Add GPLv3 licence support 2016-06-24 16:59:55 +02:00
local.yml Rename dev.yml to local.yml (#1227) 2017-07-14 17:09:41 +03:00
manage.py Easier placement of apps within the second level directory 2017-04-13 10:48:44 -07:00
package.json Revert "Node.JS + docker-compose = ♥" (#1206) 2017-06-21 23:12:22 +03:00
Procfile Use sentry for error reporting 2016-06-05 10:47:07 -07:00
production.yml Rename dev.yml to local.yml (#1227) 2017-07-14 17:09:41 +03:00
pytest.ini Fix pytest DJANGO_SETTINGS_MODULE 2017-02-10 15:10:41 +03:00
README.rst Automatic recompilation of Bootstrap with user-defined variables (#1181) 2017-06-12 19:38:00 +03:00
requirements.txt Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
runtime.txt update heroku python runtime to 3.6.2 2017-07-20 09:30:25 -03:00
setup.cfg change [pep8] to [pycodestyle] on setup.cfg 2017-04-29 18:57:23 -03:00

{{cookiecutter.project_name}}
{{ '=' * cookiecutter.project_name|length }}

{{cookiecutter.description}}

.. image:: https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg
     :target: https://github.com/pydanny/cookiecutter-django/
     :alt: Built with Cookiecutter Django
{% if cookiecutter.open_source_license != "Not open source" %}

:License: {{cookiecutter.open_source_license}}
{% endif %}

Settings
--------

Moved to settings_.

.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html

Basic Commands
--------------

Setting Up Your Users
^^^^^^^^^^^^^^^^^^^^^

* 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::

    $ python manage.py createsuperuser

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.

Test coverage
^^^^^^^^^^^^^

To run the tests, check your test coverage, and generate an HTML coverage report::

    $ coverage run manage.py test
    $ coverage html
    $ open htmlcov/index.html

Running tests with py.test
~~~~~~~~~~~~~~~~~~~~~~~~~~

::

  $ py.test

Live reloading and Sass CSS compilation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Moved to `Live reloading and SASS compilation`_.

.. _`Live reloading and SASS compilation`: http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html

{% if cookiecutter.use_celery == "y" %}

Celery
^^^^^^

This app comes with Celery.

To run a celery worker:

.. code-block:: bash

    cd {{cookiecutter.project_slug}}
    celery -A {{cookiecutter.project_slug}}.taskapp worker -l info

Please note: For Celery's 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 %}
{% if cookiecutter.use_mailhog == "y" %}

Email Server
^^^^^^^^^^^^
{% if cookiecutter.use_docker == 'y' %}
In development, it is often nice to be able to see emails that are being sent from your application. For that reason local SMTP server `MailHog`_ with a web interface is available as docker container.

.. _mailhog: https://github.com/mailhog/MailHog

Container mailhog will start automatically when you will run all docker containers.
Please check `cookiecutter-django Docker documentation`_ for more details how to start all containers.

With MailHog running, to view messages that are sent by your application, open your browser and go to ``http://127.0.0.1:8025``
{% else %}
In development, it is often nice to be able to see emails that are being sent from your application. If you choose to use `MailHog`_ when generating the project a local SMTP server with a web interface will be available.

.. _mailhog: https://github.com/mailhog/MailHog

To start the service, make sure you have nodejs installed, and then type the following::

    $ npm install
    $ grunt serve

(After the first run you only need to type ``grunt serve``) This will start an email server that listens on ``127.0.0.1:1025`` in addition to starting your Django project and a watch task for live reload.

To view messages that are sent by your application, open your browser and go to ``http://127.0.0.1:8025``

The email server will exit when you exit the Grunt task on the CLI with Ctrl+C.
{% endif %}
{% endif %}
{% if cookiecutter.use_sentry_for_error_reporting == "y" %}

Sentry
^^^^^^

Sentry is an error logging aggregator service. You can sign up for a free account at  https://sentry.io/signup/?code=cookiecutter  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 %}

Deployment
----------

The following details how to deploy this application.
{% if cookiecutter.use_heroku.lower() == "y" %}

Heroku
^^^^^^

See detailed `cookiecutter-django Heroku documentation`_.

.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html
{% endif %}
{% if cookiecutter.use_docker.lower() == "y" %}

Docker
^^^^^^

See detailed `cookiecutter-django Docker documentation`_.

.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html
{% endif %}
{% if cookiecutter.use_elasticbeanstalk_experimental.lower() == 'y' %}

Elastic Beanstalk
~~~~~~~~~~~~~~~~~~

See detailed `cookiecutter-django Elastic Beanstalk documentation`_.

.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-elastic-beanstalk.html

{% endif %}
{% if cookiecutter.custom_bootstrap_compilation == "y" %}
Custom Bootstrap Compilation
^^^^^^

To get automatic Bootstrap recompilation with variables of your choice, install bootstrap sass (`bower install bootstrap-sass`) and tweak your variables in `static/sass/custom_bootstrap_vars`.

(You can find a list of available variables [in the bootstrap-sass source](https://github.com/twbs/bootstrap-sass/blob/master/assets/stylesheets/bootstrap/_variables.scss), or get explanations on them in the [Bootstrap docs](https://getbootstrap.com/customize/).)

{% endif %}