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
This project is what we use to deploy functions in a self hosted environment. The main problem is that nodemon is used. This means that when an error is thrown, the process simply says: "waiting for file changes". This means that the process stays in a failing state until restarted manually.
The solution would be to add an env variable that depending on production or not, will use node to run the project instead of nodemon
The text was updated successfully, but these errors were encountered:
We don't really recommend using this solution for production usage, only for development. In any case, if the solution is simple enough we will accept the contribution.
This project is what we use to deploy functions in a self hosted environment. The main problem is that
nodemon
is used. This means that when an error is thrown, the process simply says: "waiting for file changes". This means that the process stays in a failing state until restarted manually.The solution would be to add an env variable that depending on production or not, will use
node
to run the project instead ofnodemon
The text was updated successfully, but these errors were encountered: