-
Notifications
You must be signed in to change notification settings - Fork 10
/
.template.env
49 lines (33 loc) · 1.06 KB
/
.template.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
#!/bin/sh
# Connect to Production API
export API_URL="https://api.liquid.us"
export APP_NAME="Democracy Space"
export WWW_PORT="3000"
export WWW_URL="http://localhost:$WWW_PORT"
export WWW_DOMAIN="democracy.space"
export ASSETS_URL="$WWW_URL/assets"
export APP_LOGO="$WWW_URL/assets/democracy-space-logo.png"
# Google Maps Address Autocompletion
export GOOGLE_GEOCODER_KEY="AIzaSyCJYJN-fUm5FqN8-DvFYz-9GH8hokSCbdQ"
# Affects Build Settings
export NODE_ENV="development"
# Charges CC Cards
export STRIPE_API_PUBLIC_KEY="pk_test_hLhLcJepsaktxBMieH9tApxE"
# Twilio verification
export TWILIO_ACCOUNT_SID=""
export TWILIO_AUTH_TOKEN=""
# IP Geolocation
export IPAPI_KEY=""
# FontAwesome Pro icons
export FONTAWESOME_NPM_AUTH_TOKEN=""
: '
## ↓↓ Copy the following code into a new file ↓↓
## ↓↓ .local.env ↓↓
## ↓↓ to overwrite default environment variables ↓↓
#!/bin/sh
source .template.env
echo "Imported defaults from .template.env"
# IP Geolocation
export IPAPI_KEY=""
echo "Imported customs from .local.env"
# '