cookiecutter-django/{{cookiecutter.project_slug}}/README.rst

176 lines
5.5 KiB
ReStructuredText
Raw Normal View History

2013-08-16 14:55:28 +04:00
{{cookiecutter.project_name}}
{{ '=' * cookiecutter.project_name|length }}
2013-08-16 14:55:28 +04:00
{{cookiecutter.description}}
2021-01-25 02:16:45 +03:00
.. 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
2021-03-03 01:50:28 +03:00
{%- if cookiecutter.open_source_license != "Not open source" %}
:License: {{cookiecutter.open_source_license}}
2021-03-03 01:50:28 +03:00
{%- endif %}
2013-08-19 22:32:07 +04:00
Settings
--------
2015-09-18 20:20:48 +03:00
Moved to settings_.
.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html
2015-09-18 20:20:48 +03:00
Basic Commands
--------------
Setting Up Your Users
^^^^^^^^^^^^^^^^^^^^^
2016-04-27 05:18:31 +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.
2016-04-27 05:18:31 +03:00
* 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.
2018-07-02 10:22:48 +03:00
Type checks
^^^^^^^^^^^
Running type checks with mypy:
::
$ mypy {{cookiecutter.project_slug}}
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 -m pytest
$ coverage html
$ open htmlcov/index.html
2015-08-04 08:20:12 +03:00
2016-02-24 23:22:22 +03:00
Running tests with py.test
~~~~~~~~~~~~~~~~~~~~~~~~~~
2016-02-24 23:22:22 +03:00
::
$ pytest
2016-02-24 23:22:22 +03:00
Live reloading and Sass CSS compilation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2015-09-18 20:20:48 +03:00
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
2021-03-03 01:50:28 +03:00
{%- 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
2016-02-28 06:27:27 +03:00
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.
2021-03-03 01:50:28 +03:00
{%- endif %}
{%- if cookiecutter.use_mailhog == "y" %}
Email Server
^^^^^^^^^^^^
2021-03-03 01:50:28 +03:00
{%- if cookiecutter.use_docker == 'y' %}
2016-04-11 00:51:34 +03:00
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.
2016-04-11 00:51:34 +03:00
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.
2016-04-11 00:51:34 +03:00
With MailHog running, to view messages that are sent by your application, open your browser and go to ``http://127.0.0.1:8025``
2021-03-03 01:50:28 +03:00
{%- else %}
2015-11-18 14:16:25 +03:00
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
2021-03-03 01:50:28 +03:00
{%- endif %}
2021-04-27 22:32:18 +03:00
.. _mailhog: https://github.com/mailhog/MailHog
2021-03-03 01:50:28 +03:00
{%- endif %}
{%- if cookiecutter.use_sentry == "y" %}
2015-07-27 18:42:23 +03:00
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.
2015-07-27 18:42:23 +03:00
The system is setup with reasonable defaults, including 404 logging and integration with the WSGI application.
You must set the DSN url in production.
2021-03-03 01:50:28 +03:00
{%- endif %}
2013-08-19 22:32:07 +04:00
Deployment
----------
2013-08-19 22:32:07 +04:00
2016-08-26 21:26:20 +03:00
The following details how to deploy this application.
2021-03-03 01:50:28 +03:00
{%- if cookiecutter.use_heroku.lower() == "y" %}
Heroku
^^^^^^
2015-09-18 20:20:48 +03:00
See detailed `cookiecutter-django Heroku documentation`_.
.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html
2021-03-03 01:50:28 +03:00
{%- endif %}
{%- if cookiecutter.use_docker.lower() == "y" %}
2016-04-27 05:18:31 +03:00
2015-07-21 11:42:31 +03:00
Docker
^^^^^^
2015-09-18 20:20:48 +03:00
See detailed `cookiecutter-django Docker documentation`_.
.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html
2021-03-03 01:50:28 +03:00
{%- 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.
2019-04-17 10:37:45 +03:00
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`_.
2021-03-03 01:50:28 +03:00
{%- if cookiecutter.js_task_runner == 'Gulp' %}
Bootstrap's javascript as well as its dependencies is concatenated into a single file: ``static/js/vendors.js``.
2021-03-03 01:50:28 +03:00
{%- 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/
2021-03-03 01:50:28 +03:00
{%- endif %}