-
Notifications
You must be signed in to change notification settings - Fork 11
/
.env.example
64 lines (52 loc) · 2.51 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
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
# App Properties
#
# When running the app locally, it will rely on the properties defined in the .env file.
#
# On first setup, be sure to copy .env.example to .env.
# The Beta app will rely on the .env.beta file.
# The app in production (not yet launched) will rely on the .env.production file.
#
# ENV can either be dev, test, beta or production
ENV=dev
# SENTRY_URL is the https://<key>@sentry.io/<project> URL that the react-native-sentry library will use when communicating with Sentry
# See https://docs.sentry.io/clients/react-native/#configure
SENTRY_URL=
# API_BASE_URL is the URL for making API calls. It can be left blank if the app does not rely on an API.
#
# When running the API locally and the app on a real device, you will need to find and use the primary IP address of your local machine (i.e. not localhost).
# See 'Running on a real device' section in this project's README.
#
API_BASE_URL=
# SOCKET_IO_URL is the URL for making Socket.io calls. It can be left blank if the app does not rely on web sockets.
#
# When running the Socket server locally and the app on a real device, you will need to find and use the primary IP address of your local machine (i.e. not localhost).
# See 'Running on a real device' section in this project's README.
#
SOCKET_IO_URL=https://codeandrobots-simulator.herokuapp.com
# FIREBASE_TOPIC is the Firebase topic that the user automatically subscribes to when they install the app.
# This topic is used for sending push notifications to the app.
# Each version of the app (dev, beta, production) have different firebase topics so they only receive push notifications that are relevant to them.
#
FIREBASE_TOPIC=
# SEGMENT_WRITE_KEY is the Segment Write Key required for sending analytics to Segment.
# There are different Segment sources for each version of the app.
#
SEGMENT_WRITE_KEY=
# IOS_APP_ID is the iOS App ID
#
IOS_APP_ID=
# APP_DOWNLOAD_URL is where the user can tell their friends to get the app.
#
APP_DOWNLOAD_URL=http://codeandrobots.com
# FAQ_URL is the URL opened by the user when they click on the FAQ link in Settings.
#
FAQ_URL=http://codeandrobots.com/faq.html
# ABOUT_URL is the URL opened by the user when they click on the About link in Settings.
#
ABOUT_URL=http://codeandrobots.com/about.html
# PRIVACY_URL is the URL opened by the user when they click on the Privacy link in Settings.
#
PRIVACY_URL=http://codeandrobots.com/privacy.html
# SUPPORT_EMAIL is the email that users will use to get in touch with you to ask for support.
#