scaffold tasks extension
Empty skeleton mirroring the events extension layout: config/manifest, pyproject + Makefile + ruff/mypy config, FastAPI routers wired into tasks_ext, NostrClient bootstrap stubs, and an empty static/routes.json. Models, migrations, CRUD, Nostr publisher/sync, and the API/template layers land in follow-up commits. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
commit
bc88b421b6
16 changed files with 354 additions and 0 deletions
14
static/routes.json
Normal file
14
static/routes.json
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
[
|
||||
{
|
||||
"path": "/tasks/",
|
||||
"name": "PageTasks",
|
||||
"template": "/tasks/static/js/index.vue",
|
||||
"component": "/tasks/static/js/index.js"
|
||||
},
|
||||
{
|
||||
"path": "/tasks/:id",
|
||||
"name": "PageTaskDisplay",
|
||||
"template": "/tasks/static/js/display.vue",
|
||||
"component": "/tasks/static/js/display.js"
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue