cookiecutter-django/{{cookiecutter.project_slug}}
dependabot[bot] de8759fdbd
Bump postcss-preset-env in /{{cookiecutter.project_slug}} (#4437)
Bumps [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) from 8.5.1 to 9.0.0.
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

---
updated-dependencies:
- dependency-name: postcss-preset-env
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-04 09:33:31 +02:00
..
.devcontainer VS Code Dev Container (#4198) 2023-07-03 11:55:33 +02:00
.envs Add Azure Storage as an option to serve static and media files (#3967) 2022-11-30 18:26:58 +00:00
.github Fix PostgreSQL version in GitHub workflow (#4423) 2023-06-28 23:35:50 +01:00
.idea Replace runserver with runserver_plus (#4373) 2023-06-07 17:12:01 +01:00
{{cookiecutter.project_slug}} Allow django-admin to optionally use django-allauth login workflow (#1921) 2023-06-30 10:50:20 +01:00
bin Fix missing compilemessages step before deploying to prod (#4363) 2023-06-09 11:12:44 +01:00
compose VS Code Dev Container (#4198) 2023-07-03 11:55:33 +02:00
config Allow django-admin to optionally use django-allauth login workflow (#1921) 2023-06-30 10:50:20 +01:00
docs VS Code Dev Container (#4198) 2023-07-03 11:55:33 +02:00
locale Fix missing compilemessages step before deploying to prod (#4363) 2023-06-09 11:12:44 +01:00
requirements Update django-stubs from 4.2.2 to 4.2.3 (#4430) 2023-07-03 12:33:41 +02: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
.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 Upgrade Python to version 3.11 (Faster CPython) (#4256) 2023-04-15 11:42:33 +01:00
.pre-commit-config.yaml Merge pull request #4393 from foarsitter/django-4.2 2023-06-28 08:58:24 +02:00
.readthedocs.yml Add more pre-commit hooks (#4266) 2023-04-15 12:15:15 +01:00
.travis.yml Upgrade Python to version 3.11 (Faster CPython) (#4256) 2023-04-15 11:42:33 +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 %}