forked from SplitTime/OpenSplitTime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
34 lines (23 loc) · 974 Bytes
/
.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
# Make a copy of this file and name it '.env'
# Add account credentials and API keys in the .env file.
# Your .env file should be listed in .gitignore to keep your settings secret!
# Each entry sets a local environment variable.
# For example, setting:
# AWS_REGION=us-west-2
# makes 'us-west-2' available as ENV["AWS_REGION"]
# For AWS services you will need the following:
AWS_REGION=your-aws-region
AWS_ACCESS_KEY_ID=your-aws-access-key
AWS_SECRET_ACCESS_KEY=your-aws-secret-access-key
S3_BUCKET=your-aws-s3-bucket
# For background notifications you will need the following:
PUSHER_APP_ID=your-pusher-app-id
PUSHER_KEY=your-pusher-key
PUSHER_SECRET_KEY=your-pusher-secret-key
# Use the following for your BASE_URI and FULL_URI
BASE_URI=localhost:3000
FULL_URI=http://localhost:3000
# Use anything you want for DURABLE_JWT_CODE (but it needs to be not nil)
DURABLE_JWT_CODE=durable-jwt
# Insert your own email for ADMIN_EMAIL
ADMIN_EMAIL=your.email@example.com