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 6f3b7ee commit ac99879Copy full SHA for ac99879
config_example.py
@@ -7,8 +7,11 @@
7
from dotenv import load_dotenv
8
load_dotenv()
9
10
-AWS_ACCESS_KEY = os.environ.get('AWS_ACCESS_KEY_ID')
11
-AWS_SECRET_ACCESS_KEY = os.environ.get('AWS_SECRET_ACCESS_KEY')
+"""
+
12
+Server resource paths and hosting options
13
14
15
16
approot = os.getenv('APPROOT')
17
if not approot:
@@ -37,6 +40,17 @@
37
40
".png" : "image/png"
38
41
}
39
42
43
44
45
+AWS Options
46
47
48
+# If this is set to true, user running the app must have AWS CLI config set up
49
+# for an IAM user that has permission to write to the s3 bucket named
50
+# APPNAME-blobs
51
+# All uploaded images and videos will be saved to that bucket
52
+USE_AWS_S3 = False
53
54
55
"""
56
0 commit comments