From 29bbcbe6f3590b2707d86ef61fac7c00cca32e33 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Thu, 11 Jan 2024 19:05:18 +0530 Subject: [PATCH] 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. --- App/.gitignore | 3 ++- App/nodemon.json | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/App/.gitignore b/App/.gitignore index 9ff7be318d..d69202ec7a 100755 --- a/App/.gitignore +++ b/App/.gitignore @@ -26,4 +26,5 @@ container_security_dir /.nyc_output /greenlock.d/config.json -/greenlock.d/config.json.bak \ No newline at end of file +/greenlock.d/config.json.bak +/.greenlockrc \ No newline at end of file diff --git a/App/nodemon.json b/App/nodemon.json index d6570eb5d6..41fee26571 100644 --- a/App/nodemon.json +++ b/App/nodemon.json @@ -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" } \ No newline at end of file