forked from gameontext/gameon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameon.env
66 lines (57 loc) · 2.22 KB
/
gameon.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
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
#Urls used by simpleroom and room to register, and know what their websocket address is.
#####################################
service_map=https://map:9443/map/v1/sites
service_room=ws://room:9080/rooms
service_simpleroom=ws://simpleroom:9090/rooms
#Urls used to talk between services
#####################################
#a8 local proxy, which uses http (not https) on the localhost link.
MAP_SERVICE_URL=http://127.0.0.1:6379/map/map/v1/sites
PLAYER_SERVICE_URL=http://127.0.0.1:6379/players/players/v1/accounts
COUCHDB_SERVICE_URL=http://couchdb:5984
KAFKA_SERVICE_URL=kafka:9092
#KAFKA_SERVICE_URL=kafka01-prod01.messagehub.services.us-south.bluemix.net:9093,kafka02-prod01.messagehub.services.us-south.bluemix.net:9093,kafka03-prod01.messagehub.services.us-south.bluemix.net:9093,kafka04-prod01.messagehub.servic
#Urls used by the web browser to acces GameOn.
####################################
#External player url (used for queries from browser)
FRONT_END_PLAYER_URL=https://127.0.0.1/players/v1/accounts
#External urls for redirecting browser to after login.
FRONT_END_SUCCESS_CALLBACK=https://127.0.0.1/#/login/callback
FRONT_END_FAIL_CALLBACK=https://127.0.0.1/#/game
#Used to form the callback urls sent to google/twitter etc
FRONT_END_AUTH_URL=https://127.0.0.1/auth
#Global configuration vars..
#####################################
GAMEON_MODE=development
SYSTEM_ID=game-on.org
LOGGING_DOCKER_HOST=
LICENSE=accept
PROXY_DOCKER_HOST=127.0.0.1
ADMIN_PASSWORD=admin
WLP_SKIP_MAXPERMSIZE=true
# For local development, continue to have server output write to the
# (mounted) servers directory
WLP_OUTPUT_DIR=/opt/ibm/wlp/usr/servers/
LOG_DIR=/opt/ibm/wlp/usr/servers/defaultServer/logs
#Userids and secrets for when running locally
#####################################
MAP_KEY=fish
COUCHDB_USER=mapUser
COUCHDB_PASSWORD=myCouchDBSecret
TWITTER_CONSUMER_KEY=
TWITTER_CONSUMER_SECRET=
FACEBOOK_APP_ID=
FACEBOOK_APP_SECRET=
GOOGLE_APP_ID=
GOOGLE_APP_SECRET=
GITHUB_APP_ID=
GITHUB_APP_SECRET=
MESSAGEHUB_USER=
MESSAGEHUB_PASSWORD=
# Common A8 configuration.
#####################################
A8_REGISTRY_URL=http://registry:8080
A8_CONTROLLER_URL=http://controller:8080
A8_CONTROLLER_POLL=5s
A8_CONTROLLER_POLL=5s
A8_LOGSTASH_SERVER='logstash:8092'