Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1
2# Db connection info for API Server Postgres.
3# Providing a single connection url is more common, but Sequelize requires the
4# individual component values, and AWS RDS secrets expose each component
5# separately by default, so we might as well have a separate variable for each.
6# Database Configuration
7API_SERVER_DATABASE_HOST=127.0.0.1
8API_SERVER_DATABASE_PORT=5432
9API_SERVER_DATABASE_NAME=postgres
10API_SERVER_DATABASE_USER=postgres
11API_SERVER_DATABASE_PASSWORD=postgres123
12
13CLICKHOUSE_PROTOCOL=http
14CLICKHOUSE_HOST=localhost
15CLICKHOUSE_PORT=8123
16CLICKHOUSE_USERNAME=default
17CLICKHOUSE_PASSWORD=clickhouse
18CLICKHOUSE_DATABASE=analytics
19CLICKHOUSE_MIGRATIONS_TABLE=MIGRATIONS_METADATA
20
21# Scylla local dev credentials
22SCYLLA_USERNAME=cassandra
23SCYLLA_PASSWORD=cassandra
24SCYLLA_HOSTS='127.0.0.1:9042'
25SCYLLA_LOCAL_DATACENTER='datacenter1'
26SCYLLA_KEYSPACE='item_investigation_service'
27SCYLLA_REPLICATION_CLASS='SimpleStrategy'
28SCYLLA_REPLICATION_FACTOR='1'
29SCYLLA_COMPACTION_STRATEGY='SizeTieredCompactionStrategy'
30SCYLLA_HAS_ENTERPRISE_FEATURES='false'