Spaces:
Build error
Build error
| const express = require('express'); | |
| const app = express(); | |
| // Hugging Face strictly expects Port 7860 | |
| const port = 7860; | |
| app.get('/', (req, res) => { | |
| res.send('Hello Treyvon! Your Docker app is running live on Hugging Face.'); | |
| }); | |
| app.listen(port, () => { | |
| console.log(`App listening at http://localhost:${port}`); | |
| }); | |