# Db connection info for API Server Postgres. # Providing a single connection url is more common, but Sequelize requires the # individual component values, and AWS RDS secrets expose each component # separately by default, so we might as well have a separate variable for each. # Database Configuration API_SERVER_DATABASE_HOST=127.0.0.1 API_SERVER_DATABASE_PORT=5432 API_SERVER_DATABASE_NAME=postgres API_SERVER_DATABASE_USER=postgres API_SERVER_DATABASE_PASSWORD=postgres123 # Set to 'true' for managed Postgres providers that require TLS. # API_SERVER_DATABASE_SSL=false # DB used for CREATE/DROP DATABASE (must not be the target DB itself). # Some managed providers use a different name (e.g. `defaultdb`). # API_SERVER_DATABASE_MAINTENANCE_NAME=postgres CLICKHOUSE_PROTOCOL=http CLICKHOUSE_HOST=localhost CLICKHOUSE_PORT=8123 CLICKHOUSE_USERNAME=default CLICKHOUSE_PASSWORD=clickhouse CLICKHOUSE_DATABASE=analytics CLICKHOUSE_MIGRATIONS_TABLE=MIGRATIONS_METADATA # Scylla local dev credentials SCYLLA_USERNAME=cassandra SCYLLA_PASSWORD=cassandra SCYLLA_HOSTS='127.0.0.1:9042' SCYLLA_LOCAL_DATACENTER='datacenter1' SCYLLA_KEYSPACE='item_investigation_service' SCYLLA_REPLICATION_CLASS='SimpleStrategy' SCYLLA_REPLICATION_FACTOR='1' SCYLLA_COMPACTION_STRATEGY='SizeTieredCompactionStrategy' SCYLLA_HAS_ENTERPRISE_FEATURES='false'