From b5fff7f23acd408061c6494ff72b0ec4879f4c7e Mon Sep 17 00:00:00 2001 From: Lucas zapico <12178702+LucasZapico@users.noreply.github.com> Date: Sun, 29 Sep 2024 02:33:45 -0700 Subject: [PATCH] docs: enhance localhost documentation with REST API URL (#7317) - Add callout for local REST API URL alongside the GraphQL API URL. - This change aims to reduce confusion and complexity for the self-hosted community. **Associated Issue - "(Docs) Enhance local hosting docs with reference to the REST API URL as well as the Graphql API URL [#7316]"** --- .../twenty-website/src/content/developers/local-setup.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/twenty-website/src/content/developers/local-setup.mdx b/packages/twenty-website/src/content/developers/local-setup.mdx index 874edf3c2..5edcd8aff 100644 --- a/packages/twenty-website/src/content/developers/local-setup.mdx +++ b/packages/twenty-website/src/content/developers/local-setup.mdx @@ -186,8 +186,9 @@ Alternatively, you can start both applications at once: npx nx start ``` -Twenty's server will be up and running at [http://localhost:3000/graphql](http://localhost:3000/graphql). -Twenty's frontend will be running at [http://localhost:3001](http://localhost:3001). Just login using the seeded demo account: `tim@apple.dev` (password: `Applecar2025`) to start using Twenty. +Twenty's server will be up and running at [http://localhost:3000](http://localhost:3000). The GraphQL API can be accessed at [http://localhost:3000/graphql](http://localhost:3000/graphql), and the REST API can be reached at [http://localhost:3000/rest](http://localhost:3000/rest). + +Twenty's frontend will be running at [http://localhost:3001](http://localhost:3001). Just log in using the seeded demo account: `tim@apple.dev` (password: `Applecar2025`) to start using Twenty. ## Troubleshooting