You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: opensaas-sh/blog/src/content/docs/start/getting-started.mdx
+22-20
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,14 @@ banner:
4
4
content: |
5
5
Open SaaS is now running on <b><a href='https://wasp-lang.dev'>Wasp v0.15</a></b>! <br/>⚙️<br/>If you're running an older version and would like to upgrade, please follow the <a href="https://wasp-lang.dev/docs/migration-guides/migrate-from-0-14-to-0-15">migration instructions.</a>
This guide will help you get your new SaaS app up and running.
9
10
11
+
If you prefer video tutorials, you can watch this walkthrough below which will guide you through most of the setup (installation, authentication, payments, etc.). If you get stuck at any point, you can refer back to these docs for more information.
@@ -22,38 +27,35 @@ To switch easily between Node.js versions, we recommend using [nvm](https://gith
22
27
Need help with nvm?
23
28
</summary>
24
29
<div>
30
+
Install nvm via your OS package manager (`apt`, `pacman`, `homebrew`, ...) or via the [nvm](https://github.com/nvm-sh/nvm#install--update-script) install script.
25
31
26
-
Install nvm via your OS package manager (`apt`, `pacman`, `homebrew`, ...) or via the [nvm](https://github.com/nvm-sh/nvm#install--update-script) install script.
32
+
Then, install a version of Node.js that you need:
27
33
28
-
Then, install a version of Node.js that you need:
34
+
```shell
35
+
nvm install 20
36
+
```
29
37
30
-
```shell
31
-
nvm install 20
32
-
```
38
+
Finally, whenever you need to ensure a specific version of Node.js is used, run:
33
39
34
-
Finally, whenever you need to ensure a specific version of Node.js is used, run:
40
+
```shell
41
+
nvm use 20
42
+
```
35
43
36
-
```shell
37
-
nvm use 20
38
-
```
44
+
to set the Node.js version for the current shell session.
39
45
40
-
to set the Node.js version for the current shell session.
46
+
You can run
41
47
42
-
You can run
48
+
```shell
49
+
node -v
50
+
```
43
51
44
-
```shell
45
-
node -v
46
-
```
47
-
48
-
to check the version of Node.js currently being used in this shell session.
49
-
50
-
Check NVM repo for more details: [https://github.com/nvm-sh/nvm](https://github.com/nvm-sh/nvm).
52
+
to check the version of Node.js currently being used in this shell session.
51
53
54
+
Check NVM repo for more details: [https://github.com/nvm-sh/nvm](https://github.com/nvm-sh/nvm).
52
55
</div>
53
56
</details>
54
57
:::
55
58
56
-
57
59
### Linux and macOS
58
60
59
61
Open your terminal and run:
@@ -73,9 +75,9 @@ Given that the wasp binary is built for x86 and not for arm64 (Apple Silicon), y
73
75
softwareupdate --install-rosetta
74
76
```
75
77
Once Rosetta is installed, you should be able to run Wasp without any issues.
0 commit comments