diff --git a/compose.yml b/compose.yml index 28f091fb6f04d4714d2c57c57abffca41b944a77..4cd4c86df646fdd142df1206d18d78f7a4267083 100644 --- a/compose.yml +++ b/compose.yml @@ -33,5 +33,31 @@ services: volumes: - ./livekit.yaml:/livekit.yaml + postgrest_app: + image: postgrest/postgrest + container_name: postgrest_app + ports: + - 8081:8081 + environment: + PGRST_DB_URI: postgres://postgres@postgres:5432/zed + volumes: + - ./crates/collab/postgrest_app.conf:/etc/postgrest.conf + command: postgrest /etc/postgrest.conf + depends_on: + - postgres + + postgrest_llm: + image: postgrest/postgrest + container_name: postgrest_llm + ports: + - 8082:8082 + environment: + PGRST_DB_URI: postgres://postgres@postgres:5432/zed_llm + volumes: + - ./crates/collab/postgrest_llm.conf:/etc/postgrest.conf + command: postgrest /etc/postgrest.conf + depends_on: + - postgres + volumes: postgres_data: diff --git a/crates/collab/postgrest_app.conf b/crates/collab/postgrest_app.conf index 3a0cdfa4933065f6ac4beeb6f5ec52b0c6cecf0a..5d3b0e65b738ed2291c782f62d7e45a8b43c9895 100644 --- a/crates/collab/postgrest_app.conf +++ b/crates/collab/postgrest_app.conf @@ -1,4 +1,4 @@ -db-uri = "postgres://postgres@localhost/zed_llm" -server-port = 8082 +db-uri = "postgres://postgres@localhost/zed" +server-port = 8081 jwt-secret = "the-postgrest-jwt-secret-for-authorization" log-level = "info" diff --git a/crates/collab/postgrest_llm.conf b/crates/collab/postgrest_llm.conf index 5d3b0e65b738ed2291c782f62d7e45a8b43c9895..3a0cdfa4933065f6ac4beeb6f5ec52b0c6cecf0a 100644 --- a/crates/collab/postgrest_llm.conf +++ b/crates/collab/postgrest_llm.conf @@ -1,4 +1,4 @@ -db-uri = "postgres://postgres@localhost/zed" -server-port = 8081 +db-uri = "postgres://postgres@localhost/zed_llm" +server-port = 8082 jwt-secret = "the-postgrest-jwt-secret-for-authorization" log-level = "info"