From 1fdcfec27cec2335a2f5d5d8f2f4c9e79f73b1b6 Mon Sep 17 00:00:00 2001 From: AdrianBalunan Date: Wed, 11 Mar 2026 16:56:50 +0100 Subject: [PATCH] Feat: Enviroment variables file for developement. Add this file to your configuration if you're developing the database throught java. --- helpmehelpapplication/src/main/resources/database.env | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 helpmehelpapplication/src/main/resources/database.env diff --git a/helpmehelpapplication/src/main/resources/database.env b/helpmehelpapplication/src/main/resources/database.env new file mode 100644 index 0000000..3f511f0 --- /dev/null +++ b/helpmehelpapplication/src/main/resources/database.env @@ -0,0 +1,9 @@ +DB_CONNECTION=mysql; +DB_HOST=127.0.0.1; +DB_PORT=3306; +DB_DATABASE=apbaluna; +DB_USERNAME=apbaluna; +DB_PASSWORD=GYntUFPG; +HMH_DB_URL=jdbc:mysql://127.0.0.1:3306/apbaluna; +HMH_DB_USERNAME=apbaluna; +HMH_DB_PASSWORD=GYntUFPG; \ No newline at end of file