arch & placeholders
This commit is contained in:
parent
a3b16ae58a
commit
57543e139a
10 changed files with 233 additions and 2 deletions
60
.gitignore
vendored
Normal file
60
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
# =========================
|
||||
# Python bytecode & cache
|
||||
# =========================
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# =========================
|
||||
# Virtual environments
|
||||
# =========================
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
|
||||
# =========================
|
||||
# Packaging / build
|
||||
# =========================
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
|
||||
# =========================
|
||||
# Test & coverage
|
||||
# =========================
|
||||
.pytest_cache/
|
||||
.coverage
|
||||
htmlcov/
|
||||
.tox/
|
||||
.nox/
|
||||
|
||||
# =========================
|
||||
# IDE / editors
|
||||
# =========================
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# =========================
|
||||
# OS generated files
|
||||
# =========================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# =========================
|
||||
# Logs
|
||||
# =========================
|
||||
*.log
|
||||
|
||||
# =========================
|
||||
# Application data
|
||||
# =========================
|
||||
data/*.json
|
||||
data/*.bak
|
||||
|
||||
# But keep example files
|
||||
!data/example.json
|
||||
Loading…
Add table
Add a link
Reference in a new issue