diff options
author | Adam Mathes <adam@trenchant.org> | 2018-06-12 15:04:22 -0700 |
---|---|---|
committer | Adam Mathes <adam@trenchant.org> | 2018-06-12 15:04:22 -0700 |
commit | 641482c1d898da0f0c8bf717b15b41bc8dbe2442 (patch) | |
tree | 6964a7aa27943b09d5a599031105c7b0b875e739 | |
parent | f280640979d45c64feaccd0f15d4661dbcf3e7dd (diff) | |
download | neko-641482c1d898da0f0c8bf717b15b41bc8dbe2442.tar.gz neko-641482c1d898da0f0c8bf717b15b41bc8dbe2442.tar.bz2 neko-641482c1d898da0f0c8bf717b15b41bc8dbe2442.zip |
readme updates
-rw-r--r-- | README.md | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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 |