Merge remote-tracking branch 'origin/main' into feature/cognito

This commit is contained in:
jay brown
2025-03-19 16:43:27 -07:00
205 changed files with 12480 additions and 3168 deletions
+7
View File
@@ -21,6 +21,13 @@ tasks:
cmds:
- task compose:up:generate
- sqlc vet --file sqlc.yml
- |
exit 0
for file in database/migrations/*.sql; do
if [[ -f "$file" ]]; then
sqlcheck -c -f $file -r 3 # move to 1
fi
done
mig:create:
cmds:
- |
+6 -2
View File
@@ -7,8 +7,12 @@ tasks:
lint:
cmds:
- |
vacuum lint ./serviceAPIs/queryService.yaml -b -d -e --no-clip -z \
{{.CLI_ARGS}}
for file in serviceAPIs/*.yml serviceAPIs/*.yaml; do
if [[ -f "$file" ]]; then
vacuum lint $file -b -d --no-clip -z -n info -s \
-r vaccum.conf.yaml {{.CLI_ARGS}}
fi
done
generate:
- |
generateGo() {