Compare commits

..

2 commits

Author SHA1 Message Date
a41611a86f Allow updating task status.
All checks were successful
Check / Backend (pull_request) Successful in 7m28s
Check / Frontend (pull_request) Successful in 1m58s
2025-10-27 21:14:09 -07:00
4552c347c6 Create a plan for implementing projects and also create the backend API. (#19)
Some checks failed
Check / Backend (push) Successful in 6m55s
Check / Frontend (push) Successful in 2m2s
Docker Build / Build and Push Backend Image (push) Failing after 11m21s
Docker Build / Build and Push Frontend Image (push) Successful in 5m44s
Creates projects to organize tasks under. (Note the migration also contains the tables for creating folders for projects as well because adding foreign keys is a PITA in sqlite apparently).

Reviewed-on: #19
Co-authored-by: Drew Galbraith <drew@tiramisu.one>
Co-committed-by: Drew Galbraith <drew@tiramisu.one>
2025-10-28 04:13:12 +00:00

View file

@ -52,8 +52,7 @@ jobs:
working-directory: backend
- name: "Integration Tests"
run: |
mkdir backend/reports/
mkdir backend/reports/store
mkdir -p reports/store
cargo test --locked --test api
working-directory: backend