Skip to content

Commit

Permalink
feat: updated JS-PostgreSQL-Prisma-NoAuth-Template
Browse files Browse the repository at this point in the history
Co-Authored-By: Mr Sharafdin <83120892+isasharafdin@users.noreply.github.com>
  • Loading branch information
abdinasir-Tman and sharafdin committed Feb 26, 2024
1 parent bd98295 commit 0dff088
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.vscode
/node_modules
.env
.env
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
// import the packages
import express from "express";
import chalk from "chalk";

//import your files
// import your files
import { port } from "./config/initial.config.js";
import chalk from "chalk";

// Initializing the app
const app = express();
app.use(express.json());

// rest of your code here


app.listen(port, () => {
console.log(`${chalk.green.bold("Server")} is listening on port ${port}`);
});

0 comments on commit 0dff088

Please sign in to comment.