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
When scaffolding a new project, the api/v1/health route shoud work, even if we have not added any DB migration yet. Currently, the endpoint return 403 ERR_CONNECTION_REFUSED because the app does not start properly (see log FATA[0000] Failed to migrate database: no migration files found).
Expected
A freshly generated project has the endpoint /api/v1/health that returns the 200 OK status code.
Steps to reproduce
Generate a new project
Do NOT add any DB migration
Run the project and query http://localhost:8080/api/v1/health
The text was updated successfully, but these errors were encountered:
Issue
When scaffolding a new project, the
api/v1/health
route shoud work, even if we have not added any DB migration yet. Currently, the endpoint return403 ERR_CONNECTION_REFUSED
because the app does not start properly (see logFATA[0000] Failed to migrate database: no migration files found
).Expected
A freshly generated project has the endpoint
/api/v1/health
that returns the200 OK
status code.Steps to reproduce
http://localhost:8080/api/v1/health
The text was updated successfully, but these errors were encountered: