corections de formats
This commit is contained in:
parent
7cc69b4e65
commit
13877330e1
3 changed files with 46 additions and 6 deletions
|
|
@ -403,5 +403,5 @@ Pour contribuer au projet :
|
|||
|
||||
---
|
||||
|
||||
Développé avec ❤️ pour Omega Kube
|
||||
Développé avec 💓 pour Omega Kube
|
||||
|
||||
|
|
|
|||
|
|
@ -192,6 +192,7 @@ class Welcome(commands.Cog):
|
|||
kuby_logger.info(f"✉️ [Welcome] Tentative d'envoi de DM à {member.name}")
|
||||
try:
|
||||
formatted_message = welcome_dm_text.format(
|
||||
user=member,
|
||||
username=member.name,
|
||||
servername=member.guild.name,
|
||||
member_count=member.guild.member_count
|
||||
|
|
|
|||
39
gitignore
Normal file
39
gitignore
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# --- SÉCURITÉ ---
|
||||
# Identifiants et tokens (LE PLUS IMPORTANT)
|
||||
.env
|
||||
|
||||
# --- DONNÉES LOCALES (Ignorées pour la prod) ---
|
||||
# Fichiers JSON de config et BDD (pour ne pas les écraser lors du git reset)
|
||||
config.json
|
||||
whitelist.json
|
||||
bridges.json
|
||||
malware.json
|
||||
config.db
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
|
||||
# Dossiers de stockage
|
||||
data/
|
||||
.data/
|
||||
backups/ # <--- IMPORTANT : pour ne pas versionner tes sauvegardes ZIP
|
||||
|
||||
# --- PYTHON ---
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
venv/
|
||||
.venv/
|
||||
env/
|
||||
|
||||
# --- LOGS ---
|
||||
*.log
|
||||
*.Logs
|
||||
logs/
|
||||
|
||||
# --- IDE & SYSTÈME ---
|
||||
.vscode/
|
||||
.idea/
|
||||
.DS_Store
|
||||
.roo/
|
||||
Loading…
Add table
Add a link
Reference in a new issue