fork
Configure Feed
Select the types of activity you want to include in your feed.
Openstatus
www.openstatus.dev
fork
Configure Feed
Select the types of activity you want to include in your feed.
1version: "0.5"
2is_strict: true
3processes:
4 init_dependencies:
5 namespace: init
6 command: |
7 pnpm install
8 is_tty: true
9 init_turso:
10 namespace: init
11 command: |
12 turso dev --db-file openstatus-dev.db
13 is_tty: true
14 availability:
15 restart: "no"
16 init_dx:
17 namespace: init
18 command: |
19 pnpm dx
20 kill $(pgrep -f "turso dev")
21 is_tty: true
22 depends_on:
23 init_dependencies:
24 condition: process_completed_successfully
25 init_turso:
26 condition: process_started
27 dev:
28 namespace: dev
29 command: |
30 pnpm dev:web
31 is_tty: true
32 depends_on:
33 init_dx:
34 condition: process_completed_successfully