From c2e8f838b181bf8685ea9dd5bc5fbfe7390a6031 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 13 Apr 2025 12:06:52 -0400 Subject: [PATCH] Moving environment variables out --- .env.sample | 1 - .gitignore | 1 + .main_db.env | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .main_db.env diff --git a/.env.sample b/.env.sample index c7494ce..fac9ed9 100644 --- a/.env.sample +++ b/.env.sample @@ -1,2 +1 @@ -DATABASE_URL=postgres://username:password@localhost/database_name SECRET_KEY=refero34o8rfhfjn983thf39fhc943rf923n3h \ No newline at end of file diff --git a/.gitignore b/.gitignore index e551aa3..972abd8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target Cargo.lock .env +.main_db.env diff --git a/.main_db.env b/.main_db.env new file mode 100644 index 0000000..669e014 --- /dev/null +++ b/.main_db.env @@ -0,0 +1 @@ +DATABASE_URL=postgres://username:password@localhost/database_name \ No newline at end of file