Deploy on Heroku

This commit is contained in:
Tristan Darricau 2016-09-12 22:03:57 +02:00
parent d9aea27c75
commit 89842299d7
No known key found for this signature in database
GPG key ID: 817043C2E29DB881

23
phpBB/config.php Normal file
View file

@ -0,0 +1,23 @@
<?php
// phpBB 3.2.x auto-generated configuration file
// Do not change anything in this file!
$url = getenv('JAWSDB_URL');
$dbparts = parse_url($url);
$dbhost = $dbparts['host'];
$dbuser = $dbparts['user'];
$dbpasswd = $dbparts['pass'];
$dbname = ltrim($dbparts['path'],'/');
$dbms = 'phpbb\\db\\driver\\mysqli';
$dbport = '';
$table_prefix = 'phpbb_';
$phpbb_adm_relative_path = 'adm/';
$acm_type = 'phpbb\\cache\\driver\\file';
@define('DEBUG', true);
@define('PHPBB_INSTALLED', true);
@define('PHPBB_DISPLAY_LOAD_TIME', true);
@define('PHPBB_ENVIRONMENT', 'development');
// @define('DEBUG_CONTAINER', true);