Ariver
2026-06-04 cb0259e3176109d437be4ff941016fe7eb37022c
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
version: '3'
 
includes:
  common: ./build/Taskfile.yml
  windows: ./build/windows/Taskfile.yml
  darwin: ./build/darwin/Taskfile.yml
 
vars:
  APP_NAME: "privatevoice-input"
  BIN_DIR: "bin"
  VITE_PORT: '{{.WAILS_VITE_PORT | default 9245}}'
 
tasks:
  build:
    summary: Builds the application
    cmds:
      - task: "{{OS}}:build"
 
  run:
    summary: Runs the application
    cmds:
      - task: "{{OS}}:run"
 
  dev:
    summary: Runs the application in development mode
    cmds:
      - wails3 dev -config ./build/config.yml -port {{.VITE_PORT}}