Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 24 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
.idea/
.vscode/
data/

# Python
__pycache__/
*.pyc
Expand All @@ -19,13 +20,32 @@ __pycache__/
.DS_Store
Thumbs.db

# Datenbank Dateien (unnötig auf Repo)
*.db

# Sonstiges
*.bak
*.tmp
FastCoding/backend/utils/config.py
command.yaml
wiki_stats.json
_build/
checker.py

# Build-Ordner: alles ignorieren...
_build/*
.pickle
.doctree
.buildinfo
.nojekyll
.inv
docs/_build/html/_sources/
furo.js.LICENSE.txt
fontawesome.js.LICENSE.txt
.map
docs/_build/doctrees/


# ...außer HTML & CSS im html-Ordner
!_build/html/
!_build/html/**/*.html
!_build/html/**/*.css
!_build/html/_static/
!_build/html/_static/**/*.css
!_build/html/_static/**/*.js
1 change: 1 addition & 0 deletions config/example.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TOKEN= dein_discord_bot_token_hier
Loading