[init] project

This commit is contained in:
Data-Name-ID
2024-04-02 00:51:49 +03:00
commit 52233d0028
28 changed files with 685 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# For django app
DJANGO_SECRET_KEY = your-secret-key
DJANGO_DEBUG = False
DJANGO_ALLOWED_HOSTS = 127.0.0.1,localhost
DJANGO_INTERNAL_IPS = 127.0.0.1,localhost
DJANGO_CSRF_TRUSTED_ORIGINS = http://127.0.0.1:8000,localhost
# For docker(remove if you want to keep defaults)
POSTGRES_PORT = <port_to_be_forwared> # default: 5432
POSTGRES_DB = <db_name> # default: postgres
POSTGRES_USER = <postgres_user> # default: postgres
POSTGRES_PASSWORD = <password> # default: postgres
PGADMIN_PORT = <port_to_be_forwared> # default: 5050
PGADMIN_EMAIL = <email> # default: admin@mail.com
PGADMIN_PASSWORD = <password> # default: admin