Initial commit: add FastAPI MVP (모프) and existing web app
Includes FastAPI+Jinja2+HTMX+SQLite implementation with seed categories, plus deployment templates. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
26
.gitignore
vendored
Normal file
26
.gitignore
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
.pytest_cache/
|
||||
.mypy_cache/
|
||||
.ruff_cache/
|
||||
|
||||
# Virtualenv
|
||||
venv/
|
||||
.venv/
|
||||
|
||||
# Local SQLite DB (generated by running the MVP)
|
||||
all_prompt.db
|
||||
*.db
|
||||
|
||||
# OS / Editor
|
||||
.DS_Store
|
||||
|
||||
# Node (existing apps/web)
|
||||
node_modules/
|
||||
.next/
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
|
||||
Reference in New Issue
Block a user