Spaces:
Running
Running
| import express from "express"; | |
| import "dotenv/config"; | |
| import { home, post } from "./jobs.js"; | |
| const app = express(); | |
| const router = express.Router(); | |
| app.use(express.json()); | |
| app.use("/api", router); | |
| router.get("/home", home); | |
| router.post("/post", post); | |
| app.listen(7860, "0.0.0.0", () => { | |
| console.log(`Server is running on port 7860`); | |
| }); | |