Skip to content

Commit f2bc7af

Browse files
committed
Fix port
1 parent 2989e58 commit f2bc7af

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ services:
4545
postgres:
4646
condition: service_healthy
4747
ports:
48-
- "${APP_PORT:-4321}:4322"
49-
- "${API_PORT:-3000}:3001"
48+
- "${APP_PORT:-4322}:4321"
49+
- "${API_PORT:-3001}:3000"
5050
deploy:
5151
resources:
5252
limits:

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ import Base from "@/layouts/Base.astro";
8989
GET /collections/:owner/:slug # collection metadata
9090
POST /collections/:owner/:slug/versions # push a version
9191
GET /collections/:owner/:slug/versions/:n # read a version
92-
GET .../versions/:n/records # browse records
93-
GET .../versions/:n/diff?from=:m # diff versions
92+
GET .../versions/:n/records # browse records
93+
GET .../versions/:n/diff?from=:m # diff versions
9494
PUT /collections/:owner/:slug/files/:hash # upload a file
9595
GET /collections/:owner/:slug/files/:hash # download a file
9696
GET /collections/:owner/:slug/export # full archive</code></pre>

0 commit comments

Comments
 (0)