homebox/Taskfile.yml

96 lines
2.4 KiB
YAML
Raw Normal View History

2022-08-30 02:30:36 +00:00
version: "3"
env:
HBOX_STORAGE_SQLITE_URL: .data/homebox.db?_fk=1
2022-08-30 02:30:36 +00:00
tasks:
generate:
desc: |
Generates collateral files from the backend project
including swagger docs and typescripts type for the frontend
deps:
- db:generate
2022-08-30 02:30:36 +00:00
cmds:
- cd backend/app/api/ && swag fmt
- cd backend/app/api/ && swag init --dir=./,../../internal,../../pkgs
- |
npx swagger-typescript-api \
--no-client \
--modular \
--path ./backend/app/api/docs/swagger.json \
--output ./frontend/lib/api/types
- python3 ./scripts/process-types.py ./frontend/lib/api/types/data-contracts.ts
sources:
- "./backend/app/api/**/*"
- "./backend/internal/repo/**/*"
- "./backend/internal/services/**/*"
- "./scripts/process-types.py"
generates:
- "./frontend/lib/api/types/data-contracts.ts"
- "./backend/ent/schema"
- "./backend/app/api/docs/swagger.json"
- "./backend/app/api/docs/swagger.yaml"
api:
desc: Starts the backend api server (depends on generate task)
deps:
- generate
cmds:
- cd backend && go run ./app/api/ {{ .CLI_ARGS }}
2022-08-30 02:30:36 +00:00
silent: false
api:build:
cmds:
- cd backend && go build ./app/api/
silent: true
api:test:
cmds:
- cd backend && go test ./app/api/
silent: true
api:watch:
cmds:
- cd backend && gotestsum --watch ./...
2022-08-30 02:30:36 +00:00
api:coverage:
cmds:
- cd backend && go test -race -coverprofile=coverage.out -covermode=atomic ./app/... ./internal/... ./pkgs/... -v -cover
silent: true
2022-09-09 19:34:19 +00:00
test:ci:
2022-08-30 02:30:36 +00:00
cmds:
- cd backend && go build ./app/api
- backend/api &
2022-08-30 02:30:36 +00:00
- sleep 5
2022-09-04 02:42:03 +00:00
- cd frontend && pnpm run test:ci
2022-08-30 02:30:36 +00:00
silent: true
frontend:watch:
desc: Starts the vitest test runner in watch mode
2022-08-30 02:30:36 +00:00
cmds:
- cd frontend && pnpm vitest --watch
2022-08-30 02:30:36 +00:00
frontend:
desc: Run frontend development server
2022-08-30 02:30:36 +00:00
cmds:
- cd frontend && pnpm dev
db:generate:
desc: Run Entgo.io Code Generation
cmds:
- |
cd backend && go generate ./... \
--template=ent/schema/templates/has_id.tmpl
sources:
- "./backend/ent/schema/**/*"
generates:
- "./backend/ent/"
db:migration:
desc: Runs the database diff engine to generate a SQL migration files
deps:
- db:generate
cmds:
- cd backend && go run app/migrations/main.go {{ .CLI_ARGS }}