cookiecutter-django/{{cookiecutter.project_slug}}
2023-08-01 20:56:51 +01:00
..
.devcontainer fix /tmp bind mount (#4455) 2023-07-11 17:32:02 +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 update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
.idea Replace runserver with runserver_plus (#4373) 2023-06-07 17:12:01 +01:00
{{cookiecutter.project_slug}} Display custom 403_csrf.html while getting a csrf error in prod (#4464) 2023-07-24 12:41:10 +01:00
bin Fix missing compilemessages step before deploying to prod (#4363) 2023-06-09 11:12:44 +01:00
compose Bump traefik (#4483) 2023-07-25 10:21:53 -03:00
config Fix code style 2023-07-12 11:03:05 +01:00
docs update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
locale update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
requirements Update flake8 to 6.1.0 (#4489) 2023-08-01 14:44:02 +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 Add .git to .dockerignore (#4054) 2023-01-06 17:56:41 +00: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 VS Code Dev Container (#4198) 2023-07-03 11:55:33 +02:00
.gitlab-ci.yml update docs docker-compose -> docker compose (#4463) 2023-07-24 10:42:51 +01:00
.pre-commit-config.yaml Change how we remove prettier pre-commit hook from the config (#4450) 2023-08-01 20:56:51 +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 Add more pre-commit hooks (#4266) 2023-04-15 12:15:15 +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 Add more pre-commit hooks (#4266) 2023-04-15 12:15:15 +01:00
requirements.txt Simplify post hook 2018-03-04 14:43:54 +03:00
runtime.txt Update Heroku runtime to Python 3.11.4 2023-06-08 16:49:59 +01:00
setup.cfg Fix inconsistent line length and move configs to pyproject.toml (#4276) 2023-04-15 15:43:04 +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_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.

  1. Download the latest MailHog release for your OS.

  2. Rename the build to MailHog.

  3. Copy the file to the project root.

  4. Make it executable:

    $ chmod +x MailHog
    
  5. Spin up another terminal window and start it there:

    ./MailHog
    
  6. 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 %}