From b65feef4342e5570c6441c12ffd31f2abd7ddada Mon Sep 17 00:00:00 2001 From: Cailean Finn Date: Tue, 18 Jun 2024 21:10:01 +0100 Subject: [PATCH] log for secret removed --- server.js | 1 - 1 file changed, 1 deletion(-) diff --git a/server.js b/server.js index 2da0955..490bec6 100644 --- a/server.js +++ b/server.js @@ -8,7 +8,6 @@ require('dotenv').config(); const app = express(); const PORT = process.env.PORT || 3000; const GITEA_SECRET = process.env.GITEA_SECRET; -console.log('GITEA_SECRET:', process.env.GITEA_SECRET); // Serve static files from the 'public' directory app.use(express.static(path.join(__dirname, 'public')));