millions/config.example.php

8 lines
242 B
PHP
Raw Permalink Normal View History

2020-01-15 12:34:46 +00:00
<?php
// path to database
2020-01-16 12:07:16 +00:00
$config['database'] = 'db/millions.sqlite';
2020-01-15 12:53:09 +00:00
// MD5 of adminer password
2020-01-16 12:07:16 +00:00
$config['adminer_password'] = md5('heslo');
2020-01-15 12:34:46 +00:00
// secret key (throw something from random.org here)
$config['secret'] = 'blablabla';
return $config;