diff --git a/README.md b/README.md index 2db3b5a82..717df8663 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,9 @@ Boringly, we call it "[customer identity access management](https://en.wikipedia ### Interactive demo -[![Uffizzi](https://cdn.uffizzi.com/demo-button.svg)](https://app.uffizzi.com/demo/github.com/logto-io/logto) - -Recommended. Click and wait for a few seconds to start exploring Logto in your own browser! - [![GitPod](https://raw.githubusercontent.com/gitpod-io/gitpod/30da76375c996109f243491b23e47feefab7217f/components/dashboard/public/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/logto-io/demo) -If you launch Logto via GitPod, please wait until you see the message like `App is running at https://3001-...gitpod.io` in the terminal, press Cmd (or Ctrl on Windows) and click the URL to continue your Logto journey. +If you launch Logto via GitPod, please wait until you see the message like `App is running at https://3002-...gitpod.io` in the terminal, press Cmd (or Ctrl on Windows) and click the URL starts with `https://3002-` to continue your Logto journey. ### Launch Logto diff --git a/docker-compose.yml b/docker-compose.yml index 4696f50ac..7cba0b72a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,12 +9,14 @@ services: entrypoint: ["sh", "-c", "npm run cli db seed -- --swe && npm start"] ports: - 3001:3001 + - 3002:3002 environment: - TRUST_PROXY_HEADER=1 - DB_URL=postgres://postgres:p0stgr3s@postgres:5432/logto # Mandatory for GitPod to map host env to the container, thus GitPod can dynamically configure the public URL of Logto; # Or, you can leverage it for local testing. - ENDPOINT + - ADMIN_ENDPOINT postgres: image: postgres:14-alpine user: postgres