-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.envrc.local.template
66 lines (48 loc) · 1.43 KB
/
.envrc.local.template
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
#! /usr/bin/env bash
#
# This is a template. Make a copy before modifying:
#
# cp .envrc.local.template .envrc.local
#
######################
# Path Configuration #
######################
# If libpq is installed
if [[ -f /usr/local/Cellar/libpq/14.1/bin/pg_config ]]; then
# If libpq is installed, then add to path
PATH_add /usr/local/Cellar/libpq/14.1/bin
# Update ldflags
export LDFLAGS="${LDFLAGS} $(pg_config --ldflags)"
fi
# If openssl is installed
if [[ -f /usr/local/Cellar/[email protected]/1.1.1m/bin/openssl ]]; then
# If openssl is installed, then add to path
PATH_add /usr/local/Cellar/[email protected]/1.1.1m/bin
export LDFLAGS="${LDFLAGS} -I/usr/local/Cellar/[email protected]/1.1.1m/include -L/usr/local/Cellar/[email protected]/1.1.1m/lib"
fi
#####################
# AWS Configuration #
#####################
export AWS_PROFILE=
########################
# Twilio Configuration #
########################
export TWILIO_ACCOUNT_NAME=
export TWILIO_ACCOUNT_SID=
export TWILIO_ACCOUNT_AUTH_TOKEN=
##########################
# Database Configuration #
##########################
export POSTGRES_PASSWORD=kanga
export DB_PASSWORD=${POSTGRES_PASSWORD}
########################
# Django Configuration #
########################
if [[ -f temp/secretkey ]]; then
export APP_SECRET_KEY=$(cat temp/secretkey)
fi
#######################
# Kanga Configuration #
#######################
export REMOTE_FIXTURES_BUCKET_NAME=
export TLS_CERTS_BUCKET_NAME=