Skip to content

Commit

Permalink
Proper node-fetch types, changed PORT
Browse files Browse the repository at this point in the history
  • Loading branch information
Eghizio committed Oct 1, 2021
1 parent c80d3bc commit a5c0262
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
42 changes: 42 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"@types/cors": "^2.8.12",
"@types/express": "^4.17.6",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.12",
"@types/xml2js": "^0.4.5",
"dotenv": "^10.0.0",
"nodemon": "^1.19.3",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createServer } from "./server";


const init = async () => {
const PORT = process.env.PORT ? parseInt(process.env.PORT) : 2137;
const PORT = process.env.PORT ? parseInt(process.env.PORT) : 3008;

const server = createServer();

Expand Down

0 comments on commit a5c0262

Please sign in to comment.