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

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 1a3048b5f2
commit 107a77d6f8
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"]
}