Add project dependencies and configuration files
This commit is contained in:
parent
7535d90528
commit
2a8f60518f
3 changed files with 18 additions and 0 deletions
4
.env.example
Normal file
4
.env.example
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
DEBUG=1
|
||||
SECRET_KEY=change-me-in-production
|
||||
DATABASE_URL=postgres://locflow:locflow@db:5432/locflow
|
||||
ALLOWED_HOSTS=localhost,127.0.0.1
|
||||
11
requirements.txt
Normal file
11
requirements.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
django>=5.1,<5.2
|
||||
djangorestframework>=3.15,<4.0
|
||||
psycopg2-binary>=2.9
|
||||
gunicorn>=22.0
|
||||
polib>=1.2
|
||||
django-filter>=24.0
|
||||
python-dotenv>=1.0
|
||||
drf-spectacular>=0.27
|
||||
pytest>=8.0
|
||||
pytest-django>=4.8
|
||||
factory-boy>=3.3
|
||||
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[tool:pytest]
|
||||
DJANGO_SETTINGS_MODULE = locflow.settings
|
||||
pythonpath = .
|
||||
Loading…
Add table
Add a link
Reference in a new issue