From a3433bf5da8d4fefd19874ebf5254819d5909a1b Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 9 Jul 2024 13:44:07 +0200 Subject: [PATCH] feat: Add .env configuration file A new .env file has been added with important elements for the application's configuration such as postgres database details, app port, encryption keys and other related data. This essential configuration is crucial for the proper operation of the application in different environments. --- .env | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..89f77e7 --- /dev/null +++ b/.env @@ -0,0 +1,13 @@ +POSTGRES_DATABASE=explorer +POSTGRES_USER=postgres +POSTGRES_PASSWORD=CtCRPcw4e9@EXXd_TVQNPDZXbaheYH4qseTMce3Ujxm@X3Dz_5aXi&pjj2V4aS&v +POSTGRES_HOST=localhost +POSTGRES_PORT=15432 + +APP_PORT=3333 +APP_TOKEN_SECRET=nChAKjPZ2iyKs5&jHsH4HUwm7AhRcyydNzWySuKvgJYXnae2K_vPgiDSJ4P5hXEw +APP_HASH_SECRET=TX2gVHukD7_Q_J2aMfhp_ZYPLT_hAY7Rbi&cfd2yV2Ahr&rPY7YVSpUFi&aU75@M +APP_CYPHER_SECRET=eXmr2jALnZSo&fXTQRCT3KeJQHv4iCLUDFXMNvJ7iezSk&2wfa_wnWvCmpVJVo&s +FRONTEND_ORIGIN=localhost +SIGNUP_ENABLE=true +REGISTER_CODE=36303630 \ No newline at end of file