### keep the env name to .env.local if you want to change this .env name you should change it in django setting too when you load this env DEBUG = True # keep debug true to set the database to sqlite # postgres database info DB_NAME = 'hshop' DB_USER = 'byeto' DB_PASSWORD = 'vuhbyq-cypMu0-sirbon' DB_HOST = 'db' DB_PORT = 5432 SECRET_KEY = '2h&gmi54wqauwqht48l-9c)r6_67_(oe_$ll%(+xz%u#)+of@d' # email stuff EMAIL_BACKEND = '' EMAIL_HOST = '' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' DEFAULT_FROM_EMAIL = '' # telegram bot toekn TELEGRAM_BOT_TOKEN = '' # domain for allowed host and allowed cors DOMAIN = 'heymlz.com' # domain for api (the domain that django will use) API_DOMAIN = 'api.heymlz.com' SITE_TITLE = 'فروشگاه هی ملز' SITE_HEADER = 'فروشگاه هی ملز' # jwt token configs ACCESS_TOKEN_LIFETIME = 5000 REFRESH_TOKEN_LIFETIME = 5000 SMS_API_KEY = ''