cookiecutter-django/{{cookiecutter.project_slug}}
2023-09-25 19:02:34 +01:00
..
.devcontainer Fix overrideCommand value in devcontainer so that the django container can run (#4517) 2023-08-14 10:50:47 +01:00
.envs Add Azure Storage as an option to serve static and media files (#3967) 2022-11-30 18:26:58 +00:00
.github Bump actions/checkout from 3 to 4 (#4565) 2023-09-06 20:40:35 +01:00
.idea Replace runserver with runserver_plus (#4373) 2023-06-07 17:12:01 +01:00
{{cookiecutter.project_slug}} Update django-storages to 1.14 (#4564) 2023-09-12 12:07:28 +01:00
bin Fix missing compilemessages step before deploying to prod (#4363) 2023-06-09 11:12:44 +01:00
compose Update Python version from 3.11.4 to 3.11.5 (#4542) 2023-08-28 11:06:30 +01:00
config Update django-storages to 1.14 (#4564) 2023-09-12 12:07:28 +01:00
docs update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
locale Add French translations (#4454) 2023-08-28 19:09:54 +01:00
requirements Update django-allauth from 0.56.1 to 0.57.0 (#4597) 2023-09-25 19:02:34 +01:00
tests Refactor merge_production_dotenvs_in_dotenv.py (#4105) 2023-01-28 15:10:45 +00:00
utility add os requirements for Ubuntu 22.04 (Jammy) (#3930) 2022-11-06 12:36:17 +00:00
webpack Fix compatibility webpack-bundle-tracker>=2.0.0 js library (#4350) 2023-05-23 12:57:52 -03:00
.dockerignore Exclude env files from container image (add .envs/ to .dockerignore) (#4476) 2023-08-14 11:22:25 +01:00
.drone.yml Add support for Drone (#4382) 2023-07-28 13:03:47 +01:00
.editorconfig Update indent for nginx config file (#4260) 2023-04-05 21:32:05 +01:00
.gitattributes Change repo_name to project_slug for clarity. 2016-04-20 10:00:35 -07:00
.gitignore Replace Mailhog with Mailpit (#4551) 2023-09-06 20:41:01 +01:00
.gitlab-ci.yml update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
.pre-commit-config.yaml Auto-update pre-commit hooks (#4596) 2023-09-25 19:02:15 +01:00
.readthedocs.yml Add more pre-commit hooks (#4266) 2023-04-15 12:15:15 +01:00
.travis.yml update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +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 Add more pre-commit hooks (#4266) 2023-04-15 12:15:15 +01:00
LICENSE Fix pre-commit hook issues 2021-04-07 20:57:04 +01:00
local.yml Replace Mailhog with Mailpit (#4551) 2023-09-06 20:41:01 +01:00
manage.py Handle path with pathlib 2019-07-10 20:35:38 +02:00
merge_production_dotenvs_in_dotenv.py Refactor merge_production_dotenvs_in_dotenv.py (#4105) 2023-01-28 15:10:45 +00:00
package.json Bump postcss-preset-env in /{{cookiecutter.project_slug}} (#4437) 2023-07-04 09:33:31 +02:00
Procfile Fix pre-commit config (#3435) 2021-11-29 11:16:05 +00:00
production.yml Tweak spacing for nginx container 2023-04-16 20:45:52 +01:00
pyproject.toml Add djLint for HTML formatting and linting (#4389) 2023-06-27 22:52:36 +01:00
README.md Replace Mailhog with Mailpit (#4551) 2023-09-06 20:41:01 +01:00
requirements.txt Simplify post hook 2018-03-04 14:43:54 +03:00
runtime.txt Update Python version from 3.11.4 to 3.11.5 (#4542) 2023-08-28 11:06:30 +01:00
setup.cfg add compatibility options for black and flake8 (#4541) 2023-08-28 11:09:15 +01:00

{{cookiecutter.project_name}}

{{ cookiecutter.description }}

Built with Cookiecutter Django Black code style

{%- if cookiecutter.open_source_license != "Not open source" %}

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

Settings

Moved to settings.

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 a 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 pytest

$ pytest

Live reloading and Sass CSS compilation

Moved to Live reloading and SASS compilation.

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

Celery

This app comes with Celery.

To run a celery worker:

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.

To run periodic tasks, you'll need to start the celery beat scheduler service. You can start it as a standalone process:

cd {{cookiecutter.project_slug}}
celery -A config.celery_app beat

or you can embed the beat service inside a worker with the -B option (not recommended for production use):

cd {{cookiecutter.project_slug}}
celery -A config.celery_app worker -B -l info

{%- endif %} {%- if cookiecutter.use_mailpit == "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 Mailpit with a web interface is available as docker container.

Container mailpit 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 Mailpit 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 Mailpit when generating the project a local SMTP server with a web interface will be available.

  1. Download the latest Mailpit release for your OS.

  2. Copy the binary file to the project root.

  3. Make it executable:

    $ chmod +x mailpit
    
  4. Spin up another terminal window and start it there:

    ./mailpit
    
  5. 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.

{%- endif %}

{%- 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 set up 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.

{%- endif %} {%- if cookiecutter.use_docker.lower() == "y" %}

Docker

See detailed cookiecutter-django Docker documentation.

{%- endif %} {%- if cookiecutter.frontend_pipeline in ['Gulp', 'Webpack'] %}

Custom Bootstrap Compilation

The generated CSS is set up with automatic Bootstrap recompilation with variables of your choice. Bootstrap v5 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.

Bootstrap's javascript as well as its dependencies are concatenated into a single file: static/js/vendors.js. {%- endif %}