[Docs] Update WSL instructions + fix broken links (#1204)

Update WSL instructions
This commit is contained in:
Charles Bochet
2023-08-14 11:25:52 -07:00
committed by GitHub
parent 3f0680bde6
commit cd3a32e555
3 changed files with 5 additions and 7 deletions
@@ -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.
+2 -1
View File
@@ -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;
```
</TabItem>
</Tabs>