forked from logto-io/logto
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.gitpod.yml
44 lines (42 loc) · 959 Bytes
/
.gitpod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
tasks:
- name: Database
init: docker pull postgres:14-alpine
command: docker run -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=p0stgr3s postgres:14-alpine
- name: Logto dev
init: |
pnpm i
pnpm prepack
cd packages/core
pnpm build
cd -
pnpm cli connector add --official -p .
command: |
gp ports await 5432
sleep 3
export ENDPOINT=$(gp url 3001)
pnpm cli db seed
pnpm start:dev
env:
TRUST_PROXY_HEADER: 1
DB_URL: postgres://postgres:[email protected]:5432/logto
ports:
- name: Logto
description: The Logto core service
port: 3001
visibility: public
- name: Postgres
port: 5432
visibility: public
onOpen: ignore
- port: 5001
onOpen: ignore
- port: 5002
onOpen: ignore
- port: 5003
onOpen: ignore
- port: 6001
onOpen: ignore
- port: 6002
onOpen: ignore
- port: 6003
onOpen: ignore