- Implemented Settings page for changing user passwords with validation and feedback. - Created Setup page for initial admin account setup with form handling and navigation. - Added API service layer for handling requests related to proxy hosts, remote servers, and import functionality. - Introduced mock data for testing purposes and set up testing framework with vitest. - Configured Tailwind CSS for styling and Vite for development and build processes. - Added scripts for Dockerfile validation, Python syntax checking, and Sourcery integration. - Implemented release and coverage scripts for better CI/CD practices.
71 lines
714 B
Plaintext
71 lines
714 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.pytest_cache/
|
|
.coverage
|
|
*.cover
|
|
.hypothesis/
|
|
htmlcov/
|
|
|
|
# Node/Frontend
|
|
frontend/node_modules/
|
|
backend/node_modules/
|
|
frontend/dist/
|
|
frontend/coverage/
|
|
frontend/.vite/
|
|
frontend/*.tsbuildinfo
|
|
|
|
# Go/Backend
|
|
backend/api
|
|
backend/*.out
|
|
backend/coverage/
|
|
backend/coverage.*.out
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
backend/data/*.db
|
|
backend/cmd/api/data/*.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
*.code-workspace
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS
|
|
Thumbs.db
|
|
|
|
# Caddy
|
|
backend/data/caddy/
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Testing
|
|
coverage/
|
|
*.xml
|