VashuTheGreat2's picture
Upload folder using huggingface_hub
0e17177 verified
import * as dotenv from "dotenv";
import path from "path";
dotenv.config({ path: path.join(process.cwd(), '../.env') });
import { Request, Response } from "express";
import logger from "./logger/create.logger.js";
import app from "./app.js"
const PORT = 3000;
app.listen(PORT, (req: Request, res: Response) => {
logger.info(`Server is starting at http://localhost:${PORT}`)
})