mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-31 19:05:00 +07:00
Run postgrest as part of foreman
Co-authored-by: Mikayla <mikayla@zed.dev>
This commit is contained in:
parent
3910efe3ab
commit
dddd37f8a6
2 changed files with 6 additions and 1 deletions
3
Procfile
3
Procfile
|
|
@ -1,3 +1,4 @@
|
||||||
web: cd ../zed.dev && PORT=3000 npx vercel dev
|
web: cd ../zed.dev && PORT=3000 npx vercel dev
|
||||||
collab: cd crates/collab && cargo run serve
|
collab: cd crates/collab && cargo run serve
|
||||||
livekit: livekit-server --dev
|
livekit: livekit-server --dev
|
||||||
|
postgrest: postgrest crates/collab/admin_api.conf
|
||||||
|
|
|
||||||
4
crates/collab/admin_api.conf
Normal file
4
crates/collab/admin_api.conf
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
db-uri = "postgres://postgres@localhost/zed"
|
||||||
|
server-port = 8081
|
||||||
|
jwt-secret = "the-postgrest-jwt-secret-for-authorization"
|
||||||
|
log-level = "info"
|
||||||
Loading…
Reference in a new issue