Merged in feature/clean (pull request #76)

Clean Set Up

* fail

* starteddb

* constraint

* cleantest

* fixqueries

* fixtests

* storemimetype

* buffer

* tests

* setup

* passingtests

* pdfHElloWorld

* rm

* test

* notodos

* tests

* clean

* testpdf
This commit is contained in:
Michael McGuinness
2025-02-28 13:11:53 +00:00
parent a49084ebce
commit f11f4def43
198 changed files with 71722 additions and 146 deletions
+10 -10
View File
@@ -1,7 +1,7 @@
---
# https://taskfile.dev
version: '3'
version: "3"
vars:
LOCAL_COMPOSE_FILE: "deployments/compose.local.yaml"
@@ -13,33 +13,33 @@ tasks:
cmds:
- task: build
vars:
COMPOSE_FILE: '{{.TEST_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.TEST_COMPOSE_FILE}}"
build:generate:
cmds:
- task: build
vars:
COMPOSE_FILE: '{{.GENERATE_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.GENERATE_COMPOSE_FILE}}"
build:
vars:
COMPOSE_FILE: '{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}"
cmds:
- docker compose -f {{.COMPOSE_FILE}} build
up:cmd:
internal: true
vars:
COMPOSE_FILE: '{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}"
cmds:
- docker compose -f {{.COMPOSE_FILE}} up --no-recreate --wait -d
up:test:
cmds:
- task: up:cmd
vars:
COMPOSE_FILE: '{{.TEST_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.TEST_COMPOSE_FILE}}"
up:generate:
cmds:
- task: up:cmd
vars:
COMPOSE_FILE: '{{.GENERATE_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.GENERATE_COMPOSE_FILE}}"
up:
cmds:
- task docker:build
@@ -77,15 +77,15 @@ tasks:
cmds:
- task: down
vars:
COMPOSE_FILE: '{{.TEST_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.TEST_COMPOSE_FILE}}"
down:generate:
cmds:
- task: down
vars:
COMPOSE_FILE: '{{.GENERATE_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.GENERATE_COMPOSE_FILE}}"
down:
vars:
COMPOSE_FILE: '{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}'
COMPOSE_FILE: "{{.COMPOSE_FILE | default .LOCAL_COMPOSE_FILE}}"
cmds:
- docker compose -f {{.COMPOSE_FILE}} down
clean:test: