forked from SkygearIO/skygear-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
94 lines (77 loc) · 1.97 KB
/
development.ini
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
85
86
87
88
89
90
91
92
93
94
; http server settings
[http]
host =
; app-related settings
[app]
name = _
; Shared secret between backend and client app.
api-key =
; Master key for potentially destructive operation and request options
; restricted to system administrator. To disable master key, set
; this to empty string. Default is empty.
master-key =
dev-mode = YES
cors-host = *
# Specify type of access control for records.
# Available options: role, relation
access-control = role
; Database settings
[db]
implementation = pq
option = postgres://postgres:@db/postgres?sslmode=disable
# NOTE: comment reserved for postressql
# see http://www.postgresql.org/docs/9.3/static/libpq-connect.html#LIBPQ-CONNSTRING
; Access Token Store settings
[token-store]
# fs / redis
implementation = fs
# path of file storage or address of redis server
path = data/token
# key prefix (only applicable for redis store)
prefix =
# redis address scheme: https://www.iana.org/assignments/uri-schemes/prov/redis
# e.g. redis://redis:6379
; Asset Store settings
[asset-store]
# fs / s3
implementation = fs
path = data/asset
access-key =
secret-key =
region =
bucket =
;
; Sets whether access to asset store is public (true) or private (false).
; Signed asset URL is generated if the asset store is private.
; For fs asset store, signed URL is required for private store access.
public = false
; Asset URL signer settings
; Used only when asset-store's implementation is set to "fs"
[asset-url-signer]
url-prefix = http://localhost:3000/files
secret = dev-secret
; APNS Settings
[apns]
enable = NO
# env: "sandbox" or "production"
env = sandbox
cert-path =
key-path =
; GCM Settings
[gcm]
enable = NO
api-key =
[log]
level = debug
# debug, info, warn, error, fatal, panic
# [log-hook]
# sentry-dsn =
# Minimum log level for log entry to be sent to Sentry.
# Available options: debug, info, warn, error, fatal, panic
# sentry-level = warn
# [plugin "python"]
# transport = zmq
# path = python
# args = tcp://*:5555
# [plugin "dev"]
# transport = exec