Skip to main content

โšก Get started

There are some nuanced differences in accessing Logto Console between the Logto OSS (open-source software) and Logto Cloud.

Logto Cloudโ€‹

Logto Cloud is a Software-as-a-Service (SaaS) version of Logto. It offers users more options for account creation and basic cloud operations than the open-source version.

Users can sign up and sign in using Google, GitHub, email with a password, or a verification code. Once you've entered the cloud, you can manage your resources and profile information within the platform.

During sign-up, you'll go through an onboarding flow that helps Logto understand your needs and preferences to personalize your experience. Although it only takes a few steps, the onboarding flow can be incredibly helpful in quickly getting started and successfully building authentication and authorization.

Get started

Logto OSS (self-hosted)โ€‹

GitPodโ€‹

To start an online GitPod workspace for Logto, click here. Wait a few moment, you'll see the message like:

Gitpod is running

Logto uses port 3001 for its core service and port 3002 for the interactive Admin Console by default.

To continue your Logto journey, press Ctrl (or Cmd) and click the link that starts with https://3002-.... Enjoy!

Localโ€‹

Docker Compose CLI usually comes with Docker Desktop.

caution

Do not use our docker compose command for production! Since we currently have a built-in Postgres database bundled together with the Logto app in docker-compose.yml, every time you re-execute the command a new database instance will be created, and any data persisted previously will be lost.

curl -fsSL https://raw.githubusercontent.com/logto-io/logto/HEAD/docker-compose.yml | docker compose -p logto -f - up

After a successful composition, you will see the message like:

Core app is running at http://localhost:3001
Core app is running at https://your-domain-url
Admin app is running at http://localhost:3002
Admin app is running at https://your-admin-domain-url

Heading to http://localhost:3002/ to continue your Logto journey. Enjoy!

Using an alternative URL for downloading

If you want to specify a URL for the Logto zip file, use the --download-url option. For example:

npm init @logto@latest -- --download-url=https://github.com/logto-io/logto/releases/download/v1.2.2/logto.tar.gz

Note the extra -- is needed for NPM to pass the arguments.

Configuration (optional)

Logto uses environment variables for configuration, along with .env file support. See Configuration for detailed usage and full variable list.

Check out Core Service if you want more advanced controls or programmatic access to Logto.

Quick troubleshootingโ€‹

My browser cannot load Admin Console (showing error Crypto.subtle is unavailable...)

Admin Console uses Web Crypto API, which requires secure contexts, i.e. HTTPS or HTTP with localhost.

If you use HTTP with an IP address or custom domain, then the browser cannot load Admin Console.

I'm using a custom domain, but my browser cannot load Admin Console (showing error "code": "oidc.invalid_redirect_uri")

If you are using a custom domain rather than localhost, you need to set the environment variable ENDPOINT to the Logto URL. It is because of the strict requirement of Redirect URI in OIDC. See Configuration for details.

I'm using an HTTPS proxy (e.g., Nginx) in front of Logto, but I failed on sign-in (showing error TypeError: Failed to fetch)

  • First, make sure you have set the node environment variable TRUST_PROXY_HEADER to true. See Configuration for details.
  • Also, you need to set X-Forwarded-Proto header to https in your proxy config. See Trusting TLS offloading proxies for details.
I'm facing CORS issues.
  • If ADMIN_ENDPOINT is not specified, localhost:[admin-port] will be allowed to perform Cross-Origin Resource Sharing (CORS) in Logto.
  • If ADMIN_ENDPOINT is specified, only requests from the origin of ADMIN_ENDPOINT will be allowed.

What is this again? Error: Invalid id token

If you are not messing up with your tokens, then in most cases this is caused by a mismatch of your server time and client time. Sync the time on both your server and client and try again.

Create an accountโ€‹

Once you have successfully hosted Logto on your server, click on "Create Account" on the welcome page. Keep in mind that the open-source version of Logto only allows for one account creation during the initial launch and does not support multiple accounts. The account creation process is limited to username and password combinations.