Add flake.lock file and update README and CI configuration for x86_64-linux checks. Modify NixOS tests to improve database handling and streamline package installations. Update quickstart guide to reflect new testing commands.

This commit is contained in:
Danilo Reyes
2025-11-01 23:22:28 -06:00
parent ff4a2625f3
commit 56b5f8c67c
5 changed files with 122 additions and 94 deletions

View File

@@ -271,11 +271,11 @@ cd backend && alembic revision --autogenerate -m "description"
nix flake check
# Run specific test
nix build .#checks.backend-integration -L
nix build .#checks.full-stack -L
nix build .#checks.x86_64-linux.backend-integration -L
nix build .#checks.x86_64-linux.full-stack -L
# Interactive debugging
nix build .#checks.backend-integration.driverInteractive
nix build .#checks.x86_64-linux.backend-integration.driverInteractive
./result/bin/nixos-test-driver
```