-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
33 lines (26 loc) · 1.88 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
#################################################################################################
####################################### EXECUTION SETUP #######################################
#################################################################################################
# PORT_HTTP: Port used by the service to listen for HTTP request.
# default value: 3000
PORT_HTTP=3000
# CALLBACK_URL: Url used to Fitbit to callback redirects.
# default value: http://localhost:3000
CALLBACK_URL=http://localhost:3000/callback
#################################################################################################
##################################### FITBIT CLIENT SETUP #######################################
#################################################################################################
# FITBIT_CLIENT_ID: Client Id for Fitbit Application resposible to manage user data.
# default value: CIENT_ID_HERE
FITBIT_CLIENT_ID=CIENT_ID_HERE
# FITBIT_CLIENT_SECRET: Client Secret for Fitbit Application resposible to manage user data.
# default value: CIENT_SECRET_HERE
FITBIT_CLIENT_SECRET=CIENT_SECRET_HERE
#################################################################################################
##################################### MESSAGE CHANNEL SETUP #####################################
#################################################################################################
# RABBITMQ_URI: URI containing the parameters for connection to the message channel
# (RabbitMQ).
# format value: amqp://user:pass@host:port
# default value: amqp://guest:guest@127.0.0.1:5672
RABBITMQ_URI=amqp://guest:guest@127.0.0.1:5672