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 bef17b5a59
commit 9ecff3a25d
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"]
}