1
0
postauto/autopost/conf.sh

30 lines
605 B
Bash
Raw Normal View History

2025-02-01 22:23:51 +01:00
#!/bin/bash
#CONFIG A MODIF
URL_API="A NOUS DEMANDER SUR DISCORD"
APIKEY="A RETROUVER DANS VOTRE PROFIL"
2025-06-23 14:27:18 +02:00
2025-02-01 22:23:51 +01:00
DOSSIER_GLOBAL="/home/$USER/"
DOSSIER_NFO="/home/$USER/autopost/mediainfo/"
DOSSIER_LOGS="/home/$USER/autopost/logs/"
2025-04-17 19:24:47 +02:00
DOSSIER_NZB_ATTENTE="/home/$USER/autopost/ATTENTE/"
DOSSIER_NZB_FINAL="/home/$USER/autopost/FINIS/"
2025-02-01 22:23:51 +01:00
#CONFIG FOURNISSEUR USENET DE POST
NG_HOST=""
NG_PORT=""
NG_USER=""
NG_PASS=""
NG_NBR_CONN=""
2025-06-23 14:27:18 +02:00
dbtype="sqlite" # ou "mysql"
MYSQL_TABLE="release" # OBLIGATOIRE
2025-06-23 14:27:18 +02:00
DB_FILE="/home/$USER/autopost/base_autopost.db"
MYSQL_HOST=""
MYSQL_PORT=
MYSQL_USER=""
MYSQL_PASS=""
MYSQL_DB=""
2025-02-01 22:23:51 +01:00
2025-08-08 22:01:26 +02:00