Skip to content

Commit 9d4f646

Browse files
committed
Update dependencies
1 parent 62c7cbf commit 9d4f646

File tree

5 files changed

+221
-174
lines changed

5 files changed

+221
-174
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@
66
## About
77
Template for Django projects based on:
88
- Simplicity
9-
- Ready for production
9+
- Purity
1010
- [Two Scoops of Django](https://www.feldroy.com/books/two-scoops-of-django-3-x)
1111
- [The Twelve-Factor App](https://12factor.net)
1212

1313

1414
## Features
15-
- Settings based on environment variables.
16-
- [`.pre-commit`](https://pre-commit.com) hooks with predefined `black` and `isort` configs.
15+
- [`poetry`](https://python-poetry.org) modern Python package manager.
16+
- [OpenAPI](https://spec.openapis.org/oas/latest.html) endpoint at `/openapi`
17+
- [`.pre-commit`](https://pre-commit.com) hooks with predefined [`black`]([`poetry`](https://python-poetry.org) modern Python package manager.) and [`isort`](https://github.com/PyCQA/isort) configs.
1718
- [`pytest`](https://docs.pytest.org/en/6.2.x/) with basic setup
1819
- Basic dependencies such `django`, `djangorestframework` etc.
1920
- `docker-compose` infrastructure file with database ([PostgreSQL](https://www.postgresql.org)) and cache ([Redis](https://redis.io)).
2021
- Dockerfile for application deployment
21-
- [OpenAPI](https://spec.openapis.org/oas/latest.html) endpoint at `/openapi`
22+
- Settings based on environment variables.
2223
- Health check endpoint at `/health`
2324

2425

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
default_language_version:
2-
python: python3.8
2+
python: python3.9
33

44
repos:
55
- repo: local

{{cookiecutter.project_name}}/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8
1+
FROM python:3.9
22

33
ENV PYTHONUNBUFFERED=1
44

0 commit comments

Comments
 (0)