Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jbilcke-hf/AI-WebTV
codificando
/
TVGenAI
like
1
Running
App
Files
Files
Community
d96076f
TVGenAI
/
src
/
index.mts
jbilcke-hf
HF staff
initial commit
e4eeb10
over 1 year ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
express
from
'express'
const
app =
express
()
const
port =
7860
app.
use
(express.
static
(
'public'
))
app.
listen
(port,
() =>
{
console
.
log
(
`Open http://localhost:
${port}
`
) })