Cailean Finn 4 months ago
parent
commit
4468137c8a
  1. 2
      server.js

2
server.js

@ -7,7 +7,7 @@ require('dotenv').config();
const app = express(); const app = express();
const PORT = process.env.PORT || 3000; const PORT = process.env.PORT || 3000;
const GITEA_SECRET = "123" const GITEA_SECRET = process.env.GITEA_SECRET
// Serve static files from the 'public' directory // Serve static files from the 'public' directory
app.use(express.static(path.join(__dirname, 'public'))); app.use(express.static(path.join(__dirname, 'public')));

Loading…
Cancel
Save