From 4f7ebe2b9657587865b6dc8c2b21b790b733dd51 Mon Sep 17 00:00:00 2001 From: Dhairya Triapthi Date: Thu, 22 Aug 2024 14:51:10 +0530 Subject: [PATCH] update: add .env.template for templating env variables --- .env => .env.template | 2 +- .gitconfig | 1 + .gitignore | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) rename .env => .env.template (51%) create mode 100644 .gitconfig diff --git a/.env b/.env.template similarity index 51% rename from .env rename to .env.template index 47b72ea..e0eb9ab 100644 --- a/.env +++ b/.env.template @@ -1,5 +1,5 @@ PORT=3000 NODE_TLS_REJECT_UNAUTHORIZED=0 -PROXY_URL="https://www.proxy-list.download/api/v1/get?type=https" +PROXY_URL="" REDIS_URL="" DATABASE_URL="" \ No newline at end of file diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..b8c9362 --- /dev/null +++ b/.gitconfig @@ -0,0 +1 @@ +apply-gitignore = !git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached \ No newline at end of file diff --git a/.gitignore b/.gitignore index 813960c..3036648 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules .git_bak dist public -.vscode \ No newline at end of file +.vscode +.env \ No newline at end of file