-
Notifications
You must be signed in to change notification settings - Fork 1
/
sample.env
37 lines (35 loc) · 1.08 KB
/
sample.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Google Analytics code
FLASK_GA_CODE=null
# Database backend
FLASK_SQLALCHEMY_DATABASE_URI=postgresql:///imgee
# Secret key
FLASK_SECRET_KEY=make this something random
# Cache type
FLASK_CACHE_TYPE=flask_caching.backends.RedisCache
FLASK_CACHE_REDIS_URL=redis://localhost:6379/0
# Redis server for task management
FLASK_REDIS_URL=redis://localhost:6379/0
# Timezone
FLASK_TIMEZONE=Asia/Kolkata
# Mail server config
FLASK_MAIL_DEFAULT_SENDER="Hasgeek <[email protected]>"
# Auth server (hasgeek.com)
FLASK_LASTUSER_SERVER=https://hasgeek.com/
# Auth client id
FLASK_LASTUSER_CLIENT_ID=
# Auth client secret
FLASK_LASTUSER_CLIENT_SECRET=
# Auth cookie secret key (if hosted on a subdomain, must be same as parent domain)
FLASK_LASTUSER_SECRET_KEY=
# If hosting in a subdomain, specify .domain.tld, else specify `false`
FLASK_LASTUSER_COOKIE_DOMAIN=false
# AWS config
FLASK_AWS_ACCESS_KEY=
FLASK_AWS_SECRET_KEY=
FLASK_AWS_S3_BUCKET=
FLASK_AWS_S3_FOLDER=
FLASK_AWS_S3_DOMAIN=//bucket.s3.amazonaws.com
# Storage for uploaded files
FLASK_UPLOADED_FILES_DIR=uploads
# Thumbnail size
FLASK_THUMBNAIL_SIZE=75x75