From 74e88bd6913a0b8021f54791396951f269310e02 Mon Sep 17 00:00:00 2001 From: gonghefine <92682888+gonghefine@users.noreply.github.com> Date: Tue, 19 Oct 2021 21:33:09 +0800 Subject: [PATCH] Create .env --- .env | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..3ba958f --- /dev/null +++ b/.env @@ -0,0 +1,18 @@ +DEBUG = True +RUN_LOCAL_DB = True +SECRET_KEY = 'super_s3cret_key' + +# Local database +LOCAL_DB_NAME='maritime' +LOCAL_DB_USER='gonghe' +# Leave the below empty if you haven't set up a local password +LOCAL_DB_PASSWORD='5432' + +# Heroku database +DB_NAME='d5cc922nns57r9' +DB_USER='frwlwcqjwhgbrn' +DB_PASSWORD='c70154c46a3ebe9cc86379bc4cf82ffe7db26624a1eeb91933a1631e312be0e2' +DB_HOST='ec2-44-197-142-172.compute-1.amazonaws.com' + +# Cache +CACHE_BACKEND = 'django.core.cache.backends.dummy.DummyCache'