feat: Comments translation to EN

This commit is contained in:
gauvainboiche
2026-08-29 22:22:41 +02:00
parent 5b2960b601
commit 473668aacb
9 changed files with 48 additions and 48 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ const PORT = process.env.PORT || 3000;
app.use(cors());
app.use(express.json());
// Service du moteur de calcul situé à la racine
// Serve the calculation engine located at the root
app.use('/pkCore.js', express.static(path.join(__dirname, '../pkCore.js')));
// Service des fichiers statiques frontend
// Serve frontend static files
app.use(express.static(path.join(__dirname, '../frontend')));
app.listen(PORT, () => {