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.
Web/Sources/config/config.php

12 lines
283 B

<?php
// bdd var => should use .env var
const DB_HOST = $_ENV['DB_HOST'];
const DB_DATABASE = $_ENV['DB_DATABASE'];
const DB_USER = $_ENV['DB_USER'];
const DB_PASSWORD = $_ENV['DB_PASSWORD'];
$dsn ='mysql:host=londres.uca.local;dbname=dbdadalmeida1';
const VIEW_PATH = 'views';