Update .gitignore and nodemon.json

This commit updates the .gitignore file to include the /.greenlockrc file and removes the trailing newline in the .gitignore file. It also adds an ignore rule for the greenlock.d/ directory in the nodemon.json file.
This commit is contained in:
Simon Larsen 2024-01-11 19:05:18 +05:30
parent 241391e27e
commit 29bbcbe6f3
No known key found for this signature in database
GPG Key ID: AB45983AA9C81CDE
2 changed files with 5 additions and 1 deletions

3
App/.gitignore vendored
View File

@ -26,4 +26,5 @@ container_security_dir
/.nyc_output
/greenlock.d/config.json
/greenlock.d/config.json.bak
/greenlock.d/config.json.bak
/.greenlockrc

View File

@ -1,5 +1,8 @@
{
"watch": ["./","../Common", "../CommonServer", "../Model"],
"ext": "ts,json,tsx,env,js,jsx,hbs",
"ignore": [
"greenlock.d/*"
],
"exec": "node --inspect=0.0.0.0:9229 --require ts-node/register Index.ts"
}