From c3162756ad9b0cea1253bd1864d84d2163abae7e Mon Sep 17 00:00:00 2001 From: Jean Jacques Avril Date: Tue, 11 Mar 2025 23:56:35 +0000 Subject: [PATCH] feat: Update .env file to comment out JWT configuration and add .gitignore for keys directory --- backend/.env | 6 +++--- backend/.gitignore | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 backend/.gitignore diff --git a/backend/.env b/backend/.env index 2d272ec..493ce00 100644 --- a/backend/.env +++ b/backend/.env @@ -7,8 +7,8 @@ DB_SSLMODE=disable API_KEY= # JWT Configuration -JWT_SECRET=test -JWT_KEY_DIR=keys -JWT_KEY_GENERATE=true +#JWT_SECRET=test +#JWT_KEY_DIR=keys +#JWT_KEY_GENERATE=true JWT_TOKEN_DURATION=24h ENVIRONMENT=production \ No newline at end of file diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 0000000..38156aa --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1 @@ +keys \ No newline at end of file