Merged in feature/textextract (pull request #108)

Start adding Textract + UUID changes

* base

* startclient

* ts

* short

* tests
This commit is contained in:
Michael McGuinness
2025-03-20 11:06:41 +00:00
parent 1587da9d11
commit 53ea7d34e6
196 changed files with 25972 additions and 1456 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
version: "3"
vars:
MIGRATIONS: "database/migrations"
MIGRATIONS: "internal/database/migrations"
tasks:
generate:
@@ -23,7 +23,7 @@ tasks:
- sqlc vet --file sqlc.yml
- |
exit 0
for file in database/migrations/*.sql; do
for file in internal/database/migrations/*.sql; do
if [[ -f "$file" ]]; then
sqlcheck -c -f $file -r 3 # move to 1
fi