Skip to content

Commit d7fd2f4

Browse files
committed
Update WSL instructions
1 parent 3f0680b commit d7fd2f4

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/docs/developer/additional/windows-wsl-setup.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,5 @@ Close and reopen your terminal to start using nvm or run the following to use it
5555

5656
### Install Twenty project
5757

58-
You are ready to install Twenty project. Follow the [Yarn install guide](/developer/local-setup#yarn-install) instructions.
58+
You are ready to install Twenty project. Follow the [Yarn install guide](/developer/local-setup#yarn-install-recommended) instructions.
5959
We don't recommend to use Docker on WSL as it adds an extra layer of complexity.
60-
61-
62-

docs/docs/developer/local-setup.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ CREATE DATABASE "test";
8383
Create a `twenty` user with password `twenty`:
8484

8585
```sql
86-
CREATE USER twenty PASSWORD ‘twenty’
86+
CREATE USER twenty PASSWORD 'twenty';
87+
ALTER USER twenty CREATEDB;
8788
```
8889
</TabItem>
8990
</Tabs>

docs/docs/start/getting-started.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ The easiest way to quickly try the app is to signup on [app.twenty.com](https://
1212

1313
The signup is free.
1414

15-
<ThemedImage sources={{light: "../../img/light-sign-in.png", dark:"../../img/dark-sign-in.png"}} style={{width:'100%', maxWidth:'800px'}}/>
15+
<ThemedImage sources={{light: "/img/light-sign-in.png", dark:"/img/dark-sign-in.png"}} style={{width:'100%', maxWidth:'800px'}}/>
1616

1717
## Developer documentation
1818

19-
If you are looking to install the project locally, either to try it or to contribute, check out our [developer guide](../developer/local-setup).
19+
If you are looking to install the project locally, either to try it or to contribute, check out our [developer guide](/developer/local-setup).

0 commit comments

Comments
 (0)