gitignore add databaseurl .env

This commit is contained in:
Priyatham-sai-chand 2020-11-29 22:38:12 +05:30
parent 4719709602
commit 3486554f39
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -3,7 +3,7 @@
# dependencies # dependencies
/node_modules /node_modules
/.pnp /.pnp
/src/.env /.env
.pnp.js .pnp.js
# testing # testing
/coverage /coverage

View File

@ -9,7 +9,7 @@ const app = express();
app.use(express.json()); app.use(express.json());
app.use(cors()); app.use(cors());
const PORT = process.env.PORT || 6000; const PORT = process.env.PORT || 5000;
app.listen(PORT, () => console.log(`The server has started on port: ${PORT}`)); app.listen(PORT, () => console.log(`The server has started on port: ${PORT}`));