You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -43,17 +46,19 @@ public struct ParseServerConfiguration {
43
46
- parameter tlsConfiguration: Manages configuration of TLS for SwiftNIO programs.
44
47
- throws: An error of `ParseError` type.
45
48
- important: This initializer looks for environment variables that begin
46
-
with **PARSE_SERVER_SWIFT** such as **PARSE_SERVER_SWIFT_APPLICATION_ID**
47
-
and **PARSE_SERVER_SWIFT_PRIMARY_KEY**.
49
+
with **PARSE_SERVER_SWIFT** such as **PARSE_SERVER_SWIFT_APPLICATION_ID**, **PARSE_SERVER_SWIFT_MAINTENANCE_KEY**, and **PARSE_SERVER_SWIFT_PRIMARY_KEY**.
PARSE_SERVER_ALLOW_CLIENT_CLASS_CREATION: 'true'# Don't allow classes to be created on the client side. You can create classes by using ParseDashboard instead
32
33
PARSE_SERVER_ALLOW_CUSTOM_OBJECTID: 'true'# Required to be true for ParseCareKit
33
-
PARSE_SERVER_ENABLE_SCHEMA_HOOKS: 'true'# When this is true, only need one server for PARSE_SERVER_SWIFT_URLS
34
+
PARSE_SERVER_ENABLE_SCHEMA_HOOKS: 'true'# When this is true, only need one server for PARSE_SERVER_SWIFT_URLS
PARSE_DASHBOARD_COOKIE_SESSION_SECRET: AB8849B6-D725-4A75-AA73-AB7103F0363F # This should be constant across all deployments on your system
48
51
PARSE_DASHBOARD_MOUNT_PATH: /dashboard # This needs to be exactly what you plan it to be behind the proxy, i.e. If you want to access cs.uky.edu/dashboard it should be "/dashboard"
49
52
PARSE_VERBOSE: 'false'
53
+
POSTGRES_USER: ${POSTGRES_USER}
50
54
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} # Needed for wait-for-postgres.sh
51
55
52
56
services:
@@ -61,6 +65,7 @@ services:
61
65
PARSE_SERVER_SWIFT_DEFAULT_MAX_BODY_SIZE: 16kb
62
66
PARSE_SERVER_SWIFT_URLS: http://parse:1337/parse #,http://parse2:1337/parse # Only need to list one server.
0 commit comments