blob: 8a1530672faa0b2d21bd39ba4f860d4396d5db78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
version: '3'
tasks:
dev-backend:
desc: Run backend in watch mode.
cmds:
- dotnet watch --project src/Costasdev.Busurbano.Backend/Costasdev.Busurbano.Backend.csproj
dev-frontend:
desc: Run frontend development server.
cmds:
- npm run dev --prefix src/frontend
format-backend:
desc: Format backend solution.
cmds:
- dotnet format --verbosity diagnostic
format-frontend:
desc: Format frontend sources.
cmds:
- 'prettier --write src/frontend/**/*.{ts,tsx,css}'
build-backend:
desc: Publish backend in Release mode.
cmds:
- dotnet publish -c Release -o ./dist/backend src/Costasdev.Busurbano.Backend/Costasdev.Busurbano.Backend.csproj
build-frontend:
desc: Build frontend bundle.
cmds:
- npm run build --prefix src/frontend
- mkdir dist/frontend
- mv src/frontend/build/client/ dist/frontend/
|