From cd3a32e55503dc1e6b9873d812dd401bf7d51045 Mon Sep 17 00:00:00 2001 From: Charles Bochet Date: Mon, 14 Aug 2023 20:25:52 +0200 Subject: [PATCH] [Docs] Update WSL instructions + fix broken links (#1204) Update WSL instructions --- docs/docs/developer/additional/windows-wsl-setup.mdx | 5 +---- docs/docs/developer/local-setup.mdx | 3 ++- docs/docs/start/getting-started.mdx | 4 ++-- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/docs/developer/additional/windows-wsl-setup.mdx b/docs/docs/developer/additional/windows-wsl-setup.mdx index 84e4cdbc1..1d297da31 100644 --- a/docs/docs/developer/additional/windows-wsl-setup.mdx +++ b/docs/docs/developer/additional/windows-wsl-setup.mdx @@ -55,8 +55,5 @@ Close and reopen your terminal to start using nvm or run the following to use it ### Install Twenty project -You are ready to install Twenty project. Follow the [Yarn install guide](/developer/local-setup#yarn-install) instructions. +You are ready to install Twenty project. Follow the [Yarn install guide](/developer/local-setup#yarn-install-recommended) instructions. We don't recommend to use Docker on WSL as it adds an extra layer of complexity. - - - diff --git a/docs/docs/developer/local-setup.mdx b/docs/docs/developer/local-setup.mdx index 1d303b7ac..467661c06 100644 --- a/docs/docs/developer/local-setup.mdx +++ b/docs/docs/developer/local-setup.mdx @@ -83,7 +83,8 @@ CREATE DATABASE "test"; Create a `twenty` user with password `twenty`: ```sql -CREATE USER twenty PASSWORD ‘twenty’ +CREATE USER twenty PASSWORD 'twenty'; +ALTER USER twenty CREATEDB; ``` diff --git a/docs/docs/start/getting-started.mdx b/docs/docs/start/getting-started.mdx index 00415fcc3..e930bebe3 100644 --- a/docs/docs/start/getting-started.mdx +++ b/docs/docs/start/getting-started.mdx @@ -12,8 +12,8 @@ The easiest way to quickly try the app is to signup on [app.twenty.com](https:// The signup is free. - + ## Developer documentation -If you are looking to install the project locally, either to try it or to contribute, check out our [developer guide](../developer/local-setup). +If you are looking to install the project locally, either to try it or to contribute, check out our [developer guide](/developer/local-setup).