36ccfc9471
Replace git.kalinamall.ru links with github.com/PTah in public docs. Add Rewrite-GitHostUrls.ps1 and Push-Mirror.ps1 for kalinamall mirror pushes. Add .cursor/ to .gitignore. Co-authored-by: Cursor <cursoragent@cursor.com>
47 lines
533 B
Plaintext
47 lines
533 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
deploy/.env
|
|
|
|
# Node / frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
node_modules/
|
|
dist/
|
|
.nuxt/
|
|
.output/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
*.code-workspace
|
|
.cursor/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# One-off remote deploy helper (never commit credentials)
|
|
deploy/_remote_sac_deploy_once.py
|
|
deploy/_remote_sac_verify.py
|
|
deploy/_ssh_test_*.py
|
|
|
|
# Runtime / deploy secrets
|
|
/config/local.yaml
|
|
/deploy/*.local.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Data
|
|
*.db
|
|
pgdata/
|
|
|
|
# Logs
|
|
*.log
|