- CLI serve command now runs uvicorn with migrations - Add dev_mode setting to bypass auth with default admin user - Add bin/animaltrack wrapper for Nix environment - Add bin/serve-dev for quick local development - Update flake.nix shellHook for PYTHONPATH and bin PATH 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3 lines
105 B
Bash
Executable File
3 lines
105 B
Bash
Executable File
#!/usr/bin/env bash
|
|
exec env CSRF_SECRET="dev-secret" DEV_MODE=true python -m animaltrack.cli serve "$@"
|