add more info to readme + example config
This commit is contained in:
parent
c8bbc8db82
commit
d0c97d5efa
2 changed files with 7 additions and 1 deletions
|
@ -2,3 +2,9 @@
|
||||||
a todo list manager but in php so it sucks
|
a todo list manager but in php so it sucks
|
||||||
|
|
||||||
https://todo.trinkey.com
|
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)
|
||||||
|
|
|
@ -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
|
$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"
|
$language = "en-US"; // an item from the lang folder. exclude the ".json"
|
||||||
|
|
||||||
$admin_users = array("trinkey"
|
$admin_users = array(
|
||||||
// "username1", "username2", ...
|
// "username1", "username2", ...
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue