This commit is contained in:
2026-02-28 12:32:12 +01:00
parent ad2014b7b2
commit 314a4ec94b
13 changed files with 35 additions and 121 deletions

View File

@@ -6,7 +6,7 @@ Ce guide t'explique comment configurer l'authentification Discord OAuth2 pour le
1. Va sur le [Discord Developer Portal](https://discord.com/developers/applications)
2. Clique sur **"New Application"** (Nouvelle Application)
3. Donne un nom à ton application (ex: "France Femboy Transcripts")
3. Donne un nom à ton application (ex: "Femboy Croissant Transcripts")
4. Clique sur **"Create"** (Créer)
## Étape 2 : Récupérer le Client ID

View File

@@ -42,6 +42,12 @@ try {
const app = express();
const PORT = process.env.TRANSCRIPT_PORT || 3000;
// --- CUSTOM HEADER (La petite touche perso) ---
app.use((req, res, next) => {
res.setHeader('X-Powered-By', 'Femboy Croissant WebEngine');
next();
});
// --- DEBUG: Middleware de log HTTP ---
app.use((req, res, next) => {
if (!req.url.includes('.css') && !req.url.includes('.js') && !req.url.includes('.png')) {