Added nodemon to dev dependencies to automatially reload the app on changes

This commit is contained in:
2025-07-02 16:58:02 -04:00
parent 190ae9f302
commit 3fa86ad23d
4 changed files with 143 additions and 4 deletions

6
nodemon.json Normal file
View File

@ -0,0 +1,6 @@
{
"exec": "go run main.go",
"ext": "go",
"watch": ["."],
"ignore": ["README.md"]
}