No description
Find a file
Carlos Bello 3ba4467e0e
Some checks failed
Tests / test (push) Has been cancelled
ADD group task type
- Create sp_insert_task to auto-promote parents to groups
- Update Query::insert() to use sp
- Add group to Validate::taskType()

ADD notes column to task table
- Can't believe i forgot this!
2026-02-18 08:19:36 -05:00
.forgejo/workflows Change port in Forgejo runner 2026-01-26 10:01:17 -05:00
.github/workflows Add CI/CD workflow for Github and Forgejo 2026-01-26 08:55:20 -05:00
config REFACTOR $allowedFields and $fieldValidators from RequestContext.php 2026-02-08 02:04:11 -05:00
database ADD group task type 2026-02-18 08:19:36 -05:00
docs Add docs/todo.md 2026-01-12 02:58:04 -05:00
frontend Add basic login form to App.js 2026-02-04 08:43:21 -05:00
public ADD group task type 2026-02-18 08:19:36 -05:00
tests CHANGE Validators to Validate 2026-02-17 07:17:50 -05:00
tools Add password hashes to seed_database.sql 2026-02-04 03:38:01 -05:00
.gitignore MODIFY .gitignore to ignore .env and .phpunit.cache 2026-02-04 01:39:33 -05:00
composer.json ADD RequestContext class 2026-02-06 01:30:58 -05:00
composer.lock Add PHPUnit 2026-01-16 04:28:12 -05:00
env.example Remove unneeded variables from env.example 2026-02-03 07:47:15 -05:00
phpunit.xml FIX schema to make more sense 2026-02-10 10:48:38 -05:00
README.md Add README.md with basic database setup instructions 2026-01-10 21:49:38 -05:00
routertest.php ADD GET / and GET /:id to TaskController for testing 2026-02-11 09:55:38 -05:00
routes.md ADD parameter extraction with regex named groups 2026-02-11 06:09:59 -05:00
routetester.php ADD parameter extraction with regex named groups 2026-02-11 06:09:59 -05:00

setup:

CREATE DATABASE todolist_v2 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE USER 'todolist_user'@'localhost' IDENTIFIED BY 'your_password';
GRANT ALL PRIVILEGES ON todolist_v2.* TO 'todolist_user'@'localhost';
FLUSH PRIVILEGES;

mariadb -u x02D0 -p x02D0 < database/001_create_users.sql