pruvodce/config.example.php

9 lines
243 B
PHP
Raw Normal View History

2021-07-15 18:31:36 +00:00
<?php
// path to database
2021-07-15 18:42:46 +00:00
$config['database'] = 'db/pruvodce.sqlite';
2021-07-15 18:31:36 +00:00
// MD5 of adminer password
$config['adminer_password'] = md5('heslo');
// secret key (throw something from random.org here)
$config['secret'] = '123456789';
return $config;