new file: .gitignore new file: Dockerfile new file: README.md new file: bot.py new file: requirements.txt
27 lines
200 B
Plaintext
27 lines
200 B
Plaintext
# Environment variables
|
|
.env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Bot data
|
|
config.json
|
|
tickets.json
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|