1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cachet_ynh.git synced 2024-09-03 18:16:03 +02:00
cachet_ynh/conf/init-mysql.sql
2022-03-15 03:20:57 +01:00

11 lines
414 B
SQL

INSERT INTO `settings` (`id`, `name`, `value`) VALUES
(1, 'app_name', 'YunoHost Status Page'),
(2, 'app_domain', 'https://__DOMAIN____PATH__'),
(3, 'app_timezone', 'Europe/Paris'),
(4, 'app_locale', '__LANGUAGE__'),
(5, 'app_incident_days', '7');
INSERT INTO `users` (`id`, `username`, `password`, `email`, `api_key`, `active`, `level`) VALUES
(1, '__ADMIN__', '__PASSWORD_PASH__', '__ADMIN_MAIL__', '', 1, 1);