We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53010ec commit 4aecad4Copy full SHA for 4aecad4
.env
@@ -1,13 +1,22 @@
1
+# True for development, False for production
2
DEBUG=True
3
4
+# Flask ENV
5
FLASK_APP=run.py
6
FLASK_ENV=development
7
8
+# If not provided, a random one is generated
9
+# SECRET_KEY=<YOUR_SUPER_KEY_HERE>
10
+
11
+# Used for CDN (in production)
12
+# No Slash at the end
13
ASSETS_ROOT=/static/assets
14
15
+# If DEBUG=False (production mode)
16
# DB_ENGINE=mysql
-# DB_HOST=localhost
17
# DB_NAME=appseed_db
-# DB_USERNAME=appseed_db_usr
-# DB_PASS=pass
18
+# DB_HOST=localhost
19
# DB_PORT=3306
20
+# DB_USERNAME=appseed_db_usr
21
+# DB_PASS=<STRONG_PASS>
22
0 commit comments