You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ X] used the search to make sure that a similar issue hasn't already been submit
Expected Behavior
Like in vanilla express, possibility to run two separate server on different ports
constapp=express();app.listen(6001,()=>console.log(`Serving at port 6001`));constapp2=express();app2.listen(6001,()=>console.log(`Serving at port 6001`));
import"./controller/app"constapp=express()RegisterRoutes(app)app.listen(6000,()=>console.log(`Serving at port 6001`));import"./controller/app1"constapp1=express()RegisterRoutes(app1)app1.listen(6001,()=>console.log(`Serving at port 6001`));
Possible Solution
Steps to Reproduce
Context (Environment)
Version of the library: 20.9.0
Version of NodeJS: 5.1.1
Confirm you were using yarn not npm: [x]
Detailed Description
Breaking change?
The text was updated successfully, but these errors were encountered:
I have two sets of controller that I would like to serve on two different ports. I have looked at #713 but it seems to focus on generating spec.
I have tried manually importing controller according to https://tsoa-community.github.io/docs/routes.html
but the second app would come in empty
Sorting
I'm submitting a ...
I confirm that I
Expected Behavior
Like in vanilla express, possibility to run two separate server on different ports
Current Behavior
I have tried manually importing controller according to https://tsoa-community.github.io/docs/routes.html
but the second app would come in empty
Possible Solution
Steps to Reproduce
Context (Environment)
Version of the library: 20.9.0
Version of NodeJS: 5.1.1
Detailed Description
Breaking change?
The text was updated successfully, but these errors were encountered: