mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-20 20:39:55 +00:00
- Added *.pyc and *.pyo to .gitignore to prevent compiled Python files from being tracked. - Improved docstrings in various modules, providing clearer descriptions of functions, parameters, and return values to enhance code readability and maintainability.
44 lines
750 B
Plaintext
Executable File
44 lines
750 B
Plaintext
Executable File
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
.git
|
|
|
|
backend/__pycache__
|
|
backend/.vscode
|
|
backend/.idea
|
|
backend/.DS_Store
|
|
backend/venv
|
|
backend/.venv
|
|
backend/.mypy_cache
|
|
backend/.pytest_cache
|
|
backend/logs
|
|
backend/alembic/versions/*
|
|
backend/*.db
|
|
backend/.ruff_cache
|
|
backend/.ruff.toml
|
|
|
|
frontend/__pycache__
|
|
frontend/.vscode
|
|
frontend/.idea
|
|
frontend/.DS_Store
|
|
frontend/node_modules
|
|
frontend/dist
|
|
frontend/.husky
|
|
frontend/src/types/auto-imports.d.ts
|
|
frontend/src/types/components.d.ts
|
|
|
|
devops/nginx/fastapp/dist
|
|
devops/nginx/fastdocs/dist
|
|
devops/nginx/frontend/dist
|
|
devops/nginx/ssl
|
|
|
|
# 本地配置覆盖文件(不提交到版本控制)
|
|
backend/env/.env.dev
|
|
backend/env/.env.prod
|
|
frontend/.env.development
|
|
frontend/.env.production
|
|
docker-compose.yaml
|