mirror of
https://github.com/wahyd4/links.git
synced 2026-08-09 05:06:16 +10:00
125 lines
1.3 KiB
Plaintext
125 lines
1.3 KiB
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*
|
|
*.sh
|
|
|
|
# Python
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
.tox
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
*.log
|
|
.mypy_cache
|
|
.pytest_cache
|
|
.hypothesis
|
|
|
|
# Django
|
|
*.log
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
.env
|
|
# Removed uv.lock exclusion as it's needed for the build
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Node modules and build artifacts
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Static files (will be built in container)
|
|
staticfiles/
|
|
|
|
# Development files
|
|
README.md
|
|
*.md
|
|
docs/
|
|
scripts/migrate_images.py
|
|
|
|
# Cache directories
|
|
.cache/
|
|
*.cache
|
|
|
|
# Data and temporary files
|
|
data/
|
|
tmp/
|
|
temp/
|
|
media/
|
|
|
|
# Kubernetes and CI/CD
|
|
k8s/
|
|
.github/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Test files
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
|
|
# Build and compile artifacts
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# Additional cache and temporary files
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
venv.bak/
|
|
|
|
# Development and documentation files
|
|
*.md
|
|
!pyproject.toml
|
|
docs/
|
|
scripts/migrate_images.py
|
|
init.sh
|
|
docker.sh
|
|
run_server.sh
|
|
run_tailwind.sh
|
|
|
|
# Package files (will be installed in container)
|
|
package.json
|