added initial roadmap and implementation

This commit is contained in:
2026-03-11 22:23:16 +02:00
parent 39b97a6db5
commit c0792f2e1d
62 changed files with 12410 additions and 1 deletions

12
tests/integration/run_tests.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
# Setup Database
echo "Setting up test database (applying migrations)..."
# Concatenate all migrations and setup script
cat migrations/*.sql tests/integration/setup_db.sql | podman exec -i madbase_db psql -U postgres -d postgres
# Run Tests
echo "Running integration tests..."
cd tests/integration
npm test