From 76ffbba8102a2a49f917a1b044ab12466cb33c5c Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Tue, 5 Mar 2024 20:56:37 +0400 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20Add=20*.env=20to=20.gitignore=20and?= =?UTF-8?q?=20create=20postgres.env.example=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- app/config/cassandra.env.example | 0 app/config/{.env.example => postgres.env.example} | 0 docker-compose-postgres.yml | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 app/config/cassandra.env.example rename app/config/{.env.example => postgres.env.example} (100%) diff --git a/.gitignore b/.gitignore index 2eea525..4f509e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -.env \ No newline at end of file +*.env \ No newline at end of file diff --git a/app/config/cassandra.env.example b/app/config/cassandra.env.example new file mode 100644 index 0000000..e69de29 diff --git a/app/config/.env.example b/app/config/postgres.env.example similarity index 100% rename from app/config/.env.example rename to app/config/postgres.env.example diff --git a/docker-compose-postgres.yml b/docker-compose-postgres.yml index 7f24877..f55e79d 100644 --- a/docker-compose-postgres.yml +++ b/docker-compose-postgres.yml @@ -20,7 +20,7 @@ services: environment: - DB=postgres env_file: - - ./app/config/.env + - ./app/config/postgres.env ports: - "8080:8080" - "8081:8081"