blob: e06d29b4dbd597139a4e7a676a79ed18f49e4d08 [file] [log] [blame]
gio2f393c12025-07-01 08:02:48 +00001install:
2 npm install --prefix config/
3 npm install --prefix front/
4 npm install --prefix back/
5
6lint:
7 npm run lint --prefix config/
8 npm run lint --prefix front/
9 npm run lint --prefix back/
10
11format:
12 npm run format --prefix config/
13 npm run format --prefix front/
14 npm run format --prefix back/
15
16build: export DODO_VOLUME_DATA=/home/gio
17build:
18 npm run build --prefix config/
19 npm run build --prefix front/
20 npm run prisma-migrate --prefix back/
21 npm run build --prefix back/
22
23run: export DODO_PORT_WEB=8080
24run: export DODO_PORT_API=8081
25run: export DODO_VOLUME_DATA=/home/gio
26run: build
27 npm run start --prefix back/
28
29start: export DODO_PORT_WEB=8080
30start: export DODO_PORT_API=8081
31start: export DODO_VOLUME_DATA=/home/gio
32start:
33 npm run prisma-migrate --prefix back/
34 npm run start --prefix back/