-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (26 loc) · 824 Bytes
/
.env.example
File metadata and controls
30 lines (26 loc) · 824 Bytes
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
# Postgres; ensure the dev container uses these configs
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DB=postgres
POSTGRES_USER=dev
POSTGRES_PASSWORD=devpass
# Cassandra; Cassandra by default often uses
# <username:password> as "cassandra:cassandra",
CASSANDRA_HOST=localhost
CASSANDRA_PORT=9042
CASSANDRA_KEYSPACE=urlshortener
CASSANDRA_USER=cassandra
CASSANDRA_PASS=cassandra
## Mainly just for Cassandra it seems, not even application level?
CASSANDRA_CLUSTER_NAME=UrlShortenerCluster
CASSANDRA_DC=dc1
CASSANDRA_RACK=rack1
CASSANDRA_ENDPOINT_SNITCH=GossipingPropertyFileSnitch
# Redis; passowrd is only required with requirepass which
# is set in redis.conf
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD= # leave blank since not using a password
# App-related Env
ENVIRONMENT="development"