From 641482c1d898da0f0c8bf717b15b41bc8dbe2442 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Tue, 12 Jun 2018 15:04:22 -0700 Subject: readme updates --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5823baf..0d084df 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,9 @@ A `neko` binary should now be in $HOME/go/bin/ #### SQLite -Just choose +Initialize a new SQLite database file with `sqlite.init.sql` + + $ cat sqlite.init.sql | sqlite3 neko.db #### Create MySQL table and user @@ -65,7 +67,11 @@ If you are using MySQL or equivalent -- $ mysql -uroot -p neko CREATE USER 'neko'@'localhost' identified by 'yourawesomepasswordgoeshere'; GRANT ALL PRIVILEGES ON neko.* TO 'neko'@'localhost'; - + +Initialize the tables with -- + + $ cat init.mysql.sql | mysql neko + ## Configuration Copy example configuration and edit as needed. @@ -133,7 +139,9 @@ Change `opml` to `text` for a simple list of feed URLs, or `json` for JSON forma ## TODO - * feed / item import - * mark all as read + * automate database initializtion + * embed templates / static files into binary + * feed / item import + * mark all as read command * rewrite frontend in a modern js framework * less ugly frontend -- cgit v1.2.3