-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslidy.yaml
More file actions
30 lines (29 loc) · 831 Bytes
/
slidy.yaml
File metadata and controls
30 lines (29 loc) · 831 Bytes
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
slidy: "1"
variables:
customMessage: "Complete" # Gets ${Local.var.customMessage}
scripts:
generate:
name: "Generate"
steps:
- run: dart pub run build_runner build --delete-conflicting-outputs
- run: npx prisma generate
watch:
name: "Watch"
description: "Run build_runner watch"
steps:
- run: dart pub run build_runner watch --delete-conflicting-outputs
up:
name: "Start Database"
description: "Starts the database container"
steps:
- run: docker compose -f dev.docker-compose.yaml up -d
down:
name: "Shutdown Database"
description: "Stops the database container"
steps:
- run: docker compose -f dev.docker-compose.yaml down
clean:
name: "Purge Database"
description: "Clears the database container"
steps:
- run: ./reset.sh