Skip to content

Commit 275f369

Browse files
committedJan 31, 2024
Installationsinstruktionen hinzufügen (und durchführen!)
1 parent 86631b7 commit 275f369

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## Installing and Building
2+
3+
You will need Node (^18), npm (>=7) and pnpm (^8)
4+
5+
```
6+
node --version
7+
npm --version
8+
npm i -g pnpm
9+
```
10+
11+
and run the npm install for CI command:
12+
13+
```
14+
pnpm i
15+
```
16+
17+
To start a development web server which listens on port 8080 and listens for code changes to rebuild the website run the command
18+
19+
```
20+
pnpm run start
21+
```
22+
23+
To create a production deployment, which will end up in the ./dist folder, run the command.
24+
25+
```
26+
pnpm run build
27+
```
28+
29+
Put the content of the `./dist` folder on a web server, make sure to have a not-found fallback on `index.html` to allow client side routing.

0 commit comments

Comments
 (0)
Please sign in to comment.