mirror of
https://github.com/agentrhq/authsome.git
synced 2026-09-19 01:34:19 +08:00
40 lines
444 B
Plaintext
40 lines
444 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
|
|
# Python build artefacts
|
|
__pycache__
|
|
*.py[cod]
|
|
*.egg-info
|
|
dist/
|
|
.venv/
|
|
.venv*/
|
|
.uv/
|
|
|
|
# Node build artefacts
|
|
ui/node_modules/
|
|
ui/.next/
|
|
ui/out/
|
|
|
|
# Generated UI assets (rebuilt inside the Docker build)
|
|
src/authsome/ui/web/
|
|
|
|
# Tests and CI
|
|
tests/
|
|
.github/
|
|
.pre-commit-config.yaml
|
|
|
|
# Docs and assets
|
|
docs/
|
|
assets/
|
|
*.md
|
|
!README.md
|
|
|
|
# Editor / tooling
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.pytest_cache/
|
|
.vscode/
|
|
.idea/
|
|
*.egg
|