Ignore generated OpenAPI types

This commit is contained in:
PnePnePne
2026-02-12 18:58:48 +01:00
parent 13f8899b19
commit 51c16e77d8
41 changed files with 3015 additions and 22 deletions

14
fastapi_demo/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "fastapi-vue-dev",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "concurrently -n api,web \"python -m uvicorn fastapi_demo.app.main:app --reload --host 127.0.0.1 --port 8000\" \"npm --prefix frontend run dev\"",
"gen:api": "npm --prefix frontend run gen:api",
"build": "npm --prefix frontend run build",
"preview": "npm --prefix frontend run preview"
},
"devDependencies": {
"concurrently": "^9.0.0"
}
}