Files
eve-typesense-mirrorer/mprocs.yaml
2026-01-09 09:00:09 +01:00

48 lines
909 B
YAML

# mprocs configuration for series similarity pipeline
# Run with: mprocs
procs:
main:
shell: "go run ."
autostart: false
stop:
send-keys: ["<C-c>"]
server:
shell: "go run . -server"
autostart: false
stop:
send-keys: ["<C-c>"]
frontend:
shell: "bun dev"
cwd: "frontend"
autostart: false
stop:
send-keys: ["<C-c>"]
db:
shell: "docker-compose up"
autostart: false
stop:
send-keys: ["<C-c>"]
go-tidy:
shell: "go mod tidy"
autostart: false
stop:
send-keys: ["<C-c>"]
gorm-gentool-install:
shell: "go install gorm.io/gen/tools/gentool@latest"
autostart: false
stop:
send-keys: ["<C-c>"]
gorm-gentool-generate:
shell: 'gentool -db sqlite -dsn "sqlite-latest.sqlite" -outPath types -modelPkgName models -onlyModel'
autostart: false
stop:
send-keys: ["<C-c>"]