You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
498 B
17 lines
498 B
<?php
|
|
|
|
|
|
|
|
// const DB_HOST = $_ENV['DB_HOST'] ?? 'localhost';
|
|
// const DB_DATABASE = $_ENV['DB_DATABASE'] ?? 'heartTrack';
|
|
// const DB_USER = $_ENV['DB_USER'] ?? 'toto';
|
|
// const DB_PASSWORD = $_ENV['DB_PASSWORD'] ?? 'achanger';
|
|
// const APP_ENV = $_ENV['APP_ENV'] ?? 'development';
|
|
const DB_HOST ='localhost';
|
|
const DB_DATABASE = 'heartTrack';
|
|
const DB_USER = 'toto';
|
|
const DB_PASSWORD = 'achanger';
|
|
const APP_ENV = 'development';
|
|
|
|
const DSN = "mysql:host=" . DB_HOST . ";dbname=" . DB_DATABASE;
|