add more info to readme + example config

This commit is contained in:
trinkey 2025-03-27 13:32:24 -04:00
parent c8bbc8db82
commit d0c97d5efa
2 changed files with 7 additions and 1 deletions

View file

@ -2,3 +2,9 @@
a todo list manager but in php so it sucks
https://todo.trinkey.com
## how to run
- make sure php and postgres are installed
- setup your config file (`cp config.example.php config.php` then edit it to your needs)
- create the database run `php setup.php` to setup the database
- setup your server however you do it (ex. `php -S localhost:8000` for testing)

View file

@ -5,7 +5,7 @@ $site_name = "Todo List Manager";
$signups = "invite"; // true, false, "invite" - treats it as true if no users currently exist, invite requires an admin to invite the user
$language = "en-US"; // an item from the lang folder. exclude the ".json"
$admin_users = array("trinkey"
$admin_users = array(
// "username1", "username2", ...
);