feat: website

This commit is contained in:
2025-10-13 15:10:47 +02:00
commit 2f37486295
19 changed files with 2136 additions and 0 deletions

14
server.js Normal file
View File

@@ -0,0 +1,14 @@
const express = require('express');
const path = require('path');
const app = express();
const PORT = process.env.PORT || 3002;
// Serve static files from the public directory
app.use(express.static(path.join(__dirname, 'public')));
// Start server
app.listen(PORT, () => {
console.log(`SPORE website running at http://localhost:${PORT}`);
});