Skip to content

Commit

Permalink
Fix #182 - add "0.0.0.0"
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Apr 23, 2024
1 parent d322c80 commit 8a40c5a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
},
"homepage": "https://github.com/samchon/backend",
"devDependencies": {
"@nestia/e2e": "^0.4.2",
"@nestia/sdk": "^3.0.3",
"@nestia/e2e": "^0.4.3",
"@nestia/sdk": "^3.0.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli": "^0.11.19",
"@types/express": "^4.17.21",
Expand Down Expand Up @@ -74,21 +74,21 @@
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"@nestia/core": "^3.0.3",
"@nestia/fetcher": "^3.0.3",
"@nestjs/common": "^10.3.3",
"@nestjs/core": "^10.3.3",
"@nestjs/platform-express": "^10.3.3",
"@prisma/client": "^5.11.0",
"@nestia/core": "^3.0.5",
"@nestia/fetcher": "^3.0.5",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@prisma/client": "^5.13.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"git-last-commit": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.11.0",
"prisma": "^5.13.0",
"serialize-error": "^4.1.0",
"source-map-support": "^0.5.19",
"tstl": "^3.0.0",
"typia": "^6.0.2"
"typia": "^6.0.3"
},
"private": true
}
2 changes: 1 addition & 1 deletion src/MyBackend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class MyBackend {

// DO OPEN
this.application_.enableCors();
await this.application_.listen(MyConfiguration.API_PORT());
await this.application_.listen(MyConfiguration.API_PORT(), "0.0.0.0");
}

public async close(): Promise<void> {
Expand Down

0 comments on commit 8a40c5a

Please sign in to comment.