forked from dyne/zenpub-client
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.env.example
37 lines (37 loc) · 1.79 KB
/
.env.example
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
APP_NAME=WeLoop
# server domain name:
HOSTNAME=localhost
# leave the following empty by default, or include the full URL of the client app, only if that is different from FRONTEND_BASE_URL and you want the webserver (Caddy) in the server container to proxy frontend requests to that URL
PROXY_FRONTEND_URL=
# if you set PROXY_FRONTEND_URL, then FRONTEND_HOSTNAME should contain only the domain name of that URL
FRONTEND_HOSTNAME=localhost
# full backend URL - server protocol, domain name, and port (if it isn't the default for protocol lile 80 or 443):
BASE_URL=http://localhost
# full client app URL, where users will browse the site (i.e used for the sign up email verification)
REACT_APP_FRONTEND_HOSTNAME=http://localhost
# URL (or root path) of the backend API
REACT_APP_GRAPHQL_ENDPOINT=/api/graphql
# URL for websockets
REACT_APP_PHOENIX_SOCKET_ENDPOINT=ws://localhost/api/socket
# cc public activities to the mothership for indexing
CONNECT_WITH_MOTHERSHIP=false
# which mothership environment to search (defaults to a test index, change this in production)
REACT_APP_MOTHERSHIP_ENV=moodlenet_mothership_next
# a tagline for your instance
INSTANCE_DESCRIPTION=Join up, organise, cooperate, federate.
# whether to require an email address to first be invited (or access-listed with MoodleNet.Access) before being able to sign up
INVITE_ONLY=true
# text which appears if invinte only (leave empty if n/a)
REACT_APP_INVITE_ONLY_TEXT=Please note that signups on this instance are currently invite-only.
# whether to automatically alter the database schema when you upgrade the app
AUTORUN_DB_MIGRATIONS=true
# you should not have to edit the following ones
REACT_APP_MOTHERSHIP_API_ID=KVG4RFL0JJ
POSTGRES_USER=postgres
POSTGRES_DB=commonspub
DATABASE_HOST=db
PORT=4000
ACME_AGREE=true
LANG=en_US.UTF-8
REPLACE_OS_VARS=true
CI=false