Skip to content

Commit b41be77

Browse files
committed
chore: Update quickstart script and .env.example to support PG instead of CH
1 parent 7f58dc1 commit b41be77

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.env.example

+10-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ REDIS_PORT="6379"
2222
REDIS_PASSWORD="password"
2323
REDIS_DATABASE="0"
2424

25-
# Clickhouse
26-
CLICKHOUSE_ADDR="clickhouse:9000"
27-
CLICKHOUSE_USERNAME="default"
28-
CLICKHOUSE_DATABASE="outpost"
29-
CLICKHOUSE_PASSWORD=""
30-
3125
# Misc Configs
3226
PUBLISHMQ_MAX_CONCURRENCY=1
3327
DELIVERYMQ_MAX_CONCURRENCY=1
@@ -46,6 +40,16 @@ TOPICS="user.created,user.updated,user.deleted" # comma separated list of topics
4640

4741
# DISABLE_TELEMETRY=true
4842

43+
# ============================== Log Storage ==============================
44+
45+
# Clickhouse
46+
# CLICKHOUSE_ADDR="clickhouse:9000"
47+
# CLICKHOUSE_USERNAME="default"
48+
# CLICKHOUSE_DATABASE="outpost"
49+
# CLICKHOUSE_PASSWORD=""
50+
51+
# POSTGRES_URL="postgres://outpost:outpost@postgres:5432/outpost?sslmode=disable"
52+
4953
# ============================== Infra MQ ==============================
5054
# MQs, Uncomment the one you want to use
5155

test/quickstart.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ wait_for_service() {
3232
# Update the <API_KEY> value within the new .env file
3333
sed -i '' "s/apikey/$TEST_API_KEY/" .env
3434

35-
docker-compose -f compose.yml -f compose-rabbitmq.yml up -d
35+
docker-compose -f compose.yml -f compose-rabbitmq.yml -f compose-postgres.yml up -d
3636

3737
# Wait until the services are running
3838
echo "Waiting for the services to start"

0 commit comments

Comments
 (0)