Skip to content

Commit

Permalink
fix: update default port
Browse files Browse the repository at this point in the history
  • Loading branch information
Kpoke committed Jan 5, 2024
1 parent 54cb1a7 commit a4a4d82
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .env.development.example

This file was deleted.

2 changes: 1 addition & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const log = require('loglevel');
require('./setup');
const app = require('./app');

const port = process.env.NODE_PORT || 3007;
const port = process.env.NODE_PORT || 3006;
const { knex, knexLegacyDB } = require('./infra/database/knex');

const server = app.listen(port, () => {
Expand Down

0 comments on commit a4a4d82

Please sign in to comment.