Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jbilcke-hf/AI-WebTV
codificando
/
TVGenAI
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8127ca8
TVGenAI
/
src
/
index.mts
jbilcke-hf
HF Staff
initial commit
e4eeb10
almost 2 years 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}
`
) })