diff --git a/src/app.ts b/src/app.ts index 8988537..97701e0 100644 --- a/src/app.ts +++ b/src/app.ts @@ -1,5 +1,4 @@ // app.ts -import { deploy } from "https://deno.com/deploy/deploy.ts"; import { Application } from "../deps.ts"; import router from "./routes/ramadhanRoute.ts"; @@ -8,7 +7,5 @@ const app = new Application(); app.use(router.routes()); app.use(router.allowedMethods()); -console.log("Server now running on http://localhost:8000"); - -// await app.listen({ port: 8000 }); -addEventListener("fetch", deploy(app)); +// console.log("Server now running "); +await app.listen({ port: 3000 });