From 8475d83b251645c200a8ac45095b507220016b37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D1=80=D0=B3=D0=B5=D0=B9=20=D0=92=D0=B0=D0=BD?= =?UTF-8?q?=D1=8E=D1=88=D0=BA=D0=B8=D0=BD?= Date: Thu, 4 Jan 2024 00:02:29 +0300 Subject: [PATCH] .env basic env file --- .env | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..cd5762e --- /dev/null +++ b/.env @@ -0,0 +1,21 @@ +# site basic constants +# this info will be shown on site header and footer +BRAND=pyproger_test +COPYRIGHT_YEAR=2024 +COPYRIGHT_NAME=test user +COPYRIGHT_LINK=mailto:test@mail.com +COPYRIGHT_CITY=Some sity + +# sqlalchemy connection section +DB_HOST=db_ip_adress +DB_PORT=db_port +DB_USER=db_user +DB_PASS=db_user_password +DB_NAME=db_name + +# server run mode +MODE=DEV + +# security requared values +SECRET_KEY=Some_secret_key +SECURITY_PASSWORD_SALT=Some_secret_salt \ No newline at end of file