JSWEB3Domain / index.js
Lordecyhper's picture
Create index.js
e1c1254 verified
raw
history blame contribute delete
324 Bytes
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}`);
});