pruvodce/config.example.php

9 lines
240 B
PHP
Raw Normal View History

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