feat: initial project setup with implementation plan

- Add PLAN.md with 40-step checklist across 10 phases
- Add CLAUDE.md with project-specific instructions
- Set up nix flake with FastHTML/MonsterUI dependencies
- Create Python package skeleton (src/animaltrack)
- Vendor FastHTML and MonsterUI documentation
- Add Docker build configuration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-27 17:37:16 +00:00
parent 852107794b
commit c0b939627b
61 changed files with 18076 additions and 0 deletions

30
packages/fastmigrate.nix Normal file
View File

@@ -0,0 +1,30 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
apswutils,
}:
buildPythonPackage rec {
pname = "fastmigrate";
version = "0.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256:02pbmw3bxs4cdr1ni7z9832m8dwb12nmbjmmg5j55pczxjc2656v";
};
build-system = [ setuptools ];
dependencies = [ apswutils ];
doCheck = false;
meta = {
description = "Database migration tool for APSW/SQLite";
homepage = "https://github.com/AnswerDotAI/fastmigrate";
license = lib.licenses.asl20;
};
}