mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-26 22:21:33 +00:00
183 lines
2.0 KiB
Plaintext
183 lines
2.0 KiB
Plaintext
# Go
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
go.work
|
|
|
|
# Go workspace file
|
|
go.work.sum
|
|
|
|
# Go build artifacts
|
|
bin/
|
|
dist/
|
|
build/
|
|
|
|
# Go vendor directory
|
|
vendor/
|
|
|
|
# Go coverage
|
|
coverage.txt
|
|
coverage.html
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
share/python-wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.py,cover
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
cover/
|
|
|
|
# Virtual environments
|
|
.env
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
Icon
|
|
._*
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
.com.apple.timemachine.donotpresent
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
# Database files
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db-shm
|
|
*.db-wal
|
|
tercul_data.db
|
|
tercul_export.json
|
|
extracted_data.json
|
|
production_data_summary.json
|
|
schema_analysis_report.json
|
|
data_analysis_report.json
|
|
tercul_data.sql
|
|
tercul_schema.sql
|
|
current_schema.sql
|
|
full_database_backup.sql
|
|
|
|
# Migration data
|
|
migration_data/
|
|
tercul-prod-db-backup/
|
|
tercul-prod-db-backup
|
|
|
|
# Data analysis and migration files
|
|
data_migration_analysis.md
|
|
data_extractor.py
|
|
direct_backup_parser.py
|
|
extract_backup_data.py
|
|
sql_to_sqlite.py
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Air (Go hot reload)
|
|
tmp/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# OS generated files
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Node.js (if any frontend components)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.npm
|
|
.eslintcache
|
|
|
|
# Generated files
|
|
graph/generated.go
|
|
graph/model/models_gen.go
|
|
|
|
# Additional files that should be ignored
|
|
refactor.md
|
|
report.md
|
|
requirements.txt |