mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 04:46:26 +00:00
- 从 Git 跟踪中移除 frontend/docs 和 frontend/app 的所有文件 - 保留 .gitkeep 文件以维持目录结构 - 更新 .gitignore 配置 - 本地文件完整保留,仅从远程仓库移除
77 lines
879 B
Plaintext
Executable File
77 lines
879 B
Plaintext
Executable File
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
*.log
|
|
*.local
|
|
|
|
.env
|
|
!.env.example
|
|
|
|
*.egg
|
|
*.egg-info
|
|
dist
|
|
build
|
|
eggs
|
|
.eggs
|
|
*.manifest
|
|
*.spec
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.Python
|
|
|
|
.mypy_cache
|
|
.pytest_cache
|
|
.ruff_cache
|
|
.coverage
|
|
htmlcov
|
|
.tox
|
|
.nox
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis
|
|
.pytype
|
|
cython_debug
|
|
|
|
venv
|
|
.venv
|
|
ENV
|
|
env.bak
|
|
venv.bak
|
|
|
|
node_modules
|
|
.npm
|
|
.pnpm-store
|
|
.pnpm-debug.log
|
|
|
|
backend/logs
|
|
backend/*.db
|
|
backend/alembic/versions/*
|
|
!backend/alembic/versions/.gitkeep
|
|
|
|
docker/nginx/app/dist
|
|
docker/nginx/docs/dist
|
|
docker/nginx/web/dist
|
|
docker/nginx/ssl/*
|
|
!docker/nginx/ssl/.gitkeep
|
|
docker/.env
|
|
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/src/types/auto-imports.d.ts
|
|
frontend/src/types/components.d.ts
|
|
frontend/.env.development
|
|
frontend/.env.production
|
|
frontend/web/.env
|
|
|
|
frontend/docs/*
|
|
!frontend/docs/.gitkeep
|
|
|
|
frontend/app/*
|
|
!frontend/app/.gitkeep
|