cookiecutter-django/{{cookiecutter.project_slug}}
2021-04-21 09:32:32 +01:00
..
.envs Fix pre-commit hook issues with Docker & Celery 2021-04-07 20:57:04 +01:00
.github Merge branch 'master' into fix_upgrade_py39 2021-04-08 18:43:54 +01:00
.idea Don't include POSTGRES_... environment in the PyCharm start script when not using Docker 2020-02-03 14:29:20 +00:00
{{cookiecutter.project_slug}} Merge branch 'master' into update_tests_deprecation 2021-04-08 18:47:47 +01:00
bin Fix issue with Heroku + Django Compressor 2020-07-04 15:20:51 +01:00
compose Merge branch 'master' into fix_upgrade_py39 2021-04-08 18:43:54 +01:00
config Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
docs Fix docs service and add RTD support (#2920) 2020-11-04 17:17:02 +00:00
locale Move to the python:alpine docker image (#1482) 2018-02-22 10:01:05 -05:00
requirements Merge pull request #3134 from pydanny/pyup-update-pre-commit-2.12.0-to-2.12.1 2021-04-21 09:32:32 +01:00
utility Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
.dockerignore Switch .dockerignore to explicit list 2021-04-08 19:42:24 +01:00
.editorconfig Test isort flake8-isort & fix issues 2020-03-03 20:04:31 +00:00
.gitattributes Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.gitignore Clean up nested venv files from .gitignore 2020-09-07 15:30:37 +02:00
.gitlab-ci.yml Merge branch 'master' into fix_upgrade_py39 2021-04-08 18:43:54 +01:00
.pre-commit-config.yaml Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
.pylintrc Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
.readthedocs.yml Update from Python3.8 to Python3.9 2021-01-26 16:13:27 +01:00
.travis.yml Update from Python3.8 to Python3.9 2021-01-26 16:13:27 +01:00
CONTRIBUTORS.txt Revert "Added name to CONTRIBUTORS.txt" 2020-08-11 16:05:14 +01:00
COPYING Add GPLv3 licence support 2016-06-24 16:59:55 +02:00
gulpfile.js Fix linting issues in Gulpfile 2021-04-07 20:57:04 +01:00
LICENSE Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
local.yml Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
manage.py Handle path with pathlib 2019-07-10 20:35:38 +02:00
merge_production_dotenvs_in_dotenv.py Nicer syntax to join paths 2020-03-17 15:46:55 +00:00
package.json Add a node image to run Gulp when selecting it with Docker (#1687) 2019-03-25 12:10:55 +00:00
Procfile Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
production.yml Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
pytest.ini Use pytest-django --reuse-db for faster tests 2019-11-13 23:28:38 +01:00
README.rst Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
requirements.txt Simplify post hook 2018-03-04 14:43:54 +03:00
runtime.txt Update Heroku to latest 3.9.x 2021-04-08 18:53:14 +01:00
setup.cfg Update from Python3.8 to Python3.9 2021-01-26 16:13:27 +01:00

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

{{cookiecutter.description}}

.. image:: https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg?logo=cookiecutter
     :target: https://github.com/pydanny/cookiecutter-django/
     :alt: Built with Cookiecutter Django
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
     :target: https://github.com/ambv/black
     :alt: Black code style
{%- 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.

Type checks
^^^^^^^^^^^

Running type checks with mypy:

::

  $ mypy {{cookiecutter.project_slug}}

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

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

    $ coverage run -m pytest
    $ coverage html
    $ open htmlcov/index.html

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

::

  $ pytest

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 config.celery_app 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.

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.

#. `Download the latest MailHog release`_ for your OS.

#. Rename the build to ``MailHog``.

#. Copy the file to the project root.

#. Make it executable: ::

    $ chmod +x MailHog

#. Spin up another terminal window and start it there: ::

    ./MailHog

#. Check out `<http://127.0.0.1:8025/>`_ to see how it goes.

Now you have your own mail server running locally, ready to receive whatever you send it.

.. _`Download the latest MailHog release`: https://github.com/mailhog/MailHog/releases
{%- endif %}
.. _mailhog: https://github.com/mailhog/MailHog
{%- endif %}
{%- if cookiecutter.use_sentry == "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.custom_bootstrap_compilation == "y" %}
Custom Bootstrap Compilation
^^^^^^

The generated CSS is set up with automatic Bootstrap recompilation with variables of your choice.
Bootstrap v4 is installed using npm and customised by tweaking your variables in ``static/sass/custom_bootstrap_vars``.

You can find a list of available variables `in the bootstrap source`_, or get explanations on them in the `Bootstrap docs`_.

{%- if cookiecutter.js_task_runner == 'Gulp' %}
Bootstrap's javascript as well as its dependencies is concatenated into a single file: ``static/js/vendors.js``.
{%- endif %}

.. _in the bootstrap source: https://github.com/twbs/bootstrap/blob/v4-dev/scss/_variables.scss
.. _Bootstrap docs: https://getbootstrap.com/docs/4.1/getting-started/theming/

{%- endif %}