latest_fix_read_live_files_from_/dev/shm/1.txt_file__to_lip_sink_with_external_tts

This commit is contained in:
dhruv
2026-05-17 18:30:16 +05:30
parent 9735303148
commit 6cf9586e82
5 changed files with 149 additions and 3 deletions

11
server copy.js Normal file
View File

@@ -0,0 +1,11 @@
const express = require('express');
const path = require('path');
const app = express();
const PORT = 3000;
app.use(express.static(path.join(__dirname, 'public')));
app.listen(PORT, () => {
console.log(`Server running at http://localhost:${PORT}`);
});