Skip to content

Commit

Permalink
fix: use correct env variable names for db
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimusCrime committed Sep 24, 2024
1 parent ea66a58 commit bc3ca0f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions youkok2/src/Helpers/Configuration/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ class Configuration
CONST STRING DIRECTORY_TEMPLATE = 'DIRECTORY_TEMPLATE';
CONST STRING DIRECTORY_FILES = 'DIRECTORY_FILES';

CONST STRING DB_HOST = 'MYSQL_HOST';
CONST STRING DB_USER = 'MYSQL_USER';
CONST STRING DB_PASSWORD = 'MYSQL_PASSWORD';
CONST STRING DB_DATABASE = 'MYSQL_DATABASE';
CONST STRING DB_PORT = 'MYSQL_PORT';
CONST STRING DB_HOST = 'DB_HOST';
CONST STRING DB_USER = 'DB_USER';
CONST STRING DB_PASSWORD = 'DB_PASSWORD';
CONST STRING DB_DATABASE = 'DB_DATABASE';
CONST STRING DB_PORT = 'DB_PORT';

CONST STRING REDIS_HOST = 'CACHE_HOST';
CONST STRING REDIS_PORT = 'CACHE_PORT';
Expand Down

0 comments on commit bc3ca0f

Please sign in to comment.