forked from ExtensionEngine/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
84 lines (58 loc) · 1.76 KB
/
.env.example
File metadata and controls
84 lines (58 loc) · 1.76 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
###########################
# General server behavior #
###########################
# Express app will listen on this port.
SERVER_PORT=3000
SERVER_URL=http://localhost:3000
############
# Database #
############
POSTGRES_URI=postgres://<user>:<pass>@localhost:5432/tailor
###############################
# Security and authentication #
###############################
# Origins allowed in CORS requests. Multiple origins can be listed by using
# comma as a separator. In development, this will typically match your webpack
# dev server address:
CORS_ALLOWED_ORIGINS=http://localhost:8080
# Number of salt rounds to use when hashing user passwords.
AUTH_SALT_ROUNDS=10
# Session secret string.
AUTH_JWT_SECRET=
#########
# Email #
#########
EMAIL_ADDRESS=tailor@extensionengine.com
EMAIL_USER=
EMAIL_PASSWORD=
EMAIL_HOST=email-smtp.us-east-1.amazonaws.com
###########
# Storage #
###########
# amazon or filesystem
STORAGE_PROVIDER=filesystem
# Filesystem provider settings
STORAGE_PATH=
# Amazon provider settings
STORAGE_KEY=
STORAGE_SECRET=
STORAGE_REGION=
STORAGE_BUCKET=
#################
# Schema config #
#################
# In order to disable default schema, create custom schema and set this param
# to falsy value. Disabling default schema won't work if custom schema
# does not exist.
ENABLE_DEFAULT_SCHEMA=1
####################
# General settings #
####################
# String template that will be interpolated on the client using two route params,
# repositoryId and activityId.
PREVIEW_URL=https://myserver.com/repository/{repositoryId}/activity/{activityId}
# Terminal (forcefully enable color)
FORCE_COLOR=1
# Do not group published resources by outline item id.
# repository/id/resourceId* instead of repository/id/outlineId/resourceId*
FLAT_REPO_STRUCTURE=1