62 lines
590 B
Text
62 lines
590 B
Text
# JB Toolkit
|
|
.idea
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI
|
|
.woodpecker/
|
|
|
|
# Virtual env
|
|
.venv/
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
Dockerfile
|
|
.docker
|
|
.dockerignore
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
**/__pycache__/
|
|
**/*.py[cod]
|
|
|
|
# C extensions
|
|
*.so
|
|
|
|
# Distribution / packaging
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
target/
|
|
eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Logs
|
|
**/*.log
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
|
|
# Python mode for VIM
|
|
.ropeproject
|
|
**/.ropeproject
|
|
|
|
# Vim swap files
|
|
**/*.swp
|
|
|
|
# Project specific
|
|
.compose_repository/
|
|
config/
|
|
tests/
|