diff options
-rw-r--r-- | README.md | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -6,11 +6,11 @@ RSS Reader focused on cat ears mode ## Huh? -I decided I didn't like the [old version that was python and mongo](https://github.com/adammathes/neko_v1) so rewrote the backend in Go and sql and wanted to learn some Go. So assume the code is bad since I don't know what I'm doing. +I decided I didn't like the [old version that was python and mongo](https://github.com/adammathes/neko_v1) so rewrote it. I wanted to learn some Go. So assume the code is bad since I don't know what I'm doing even more so than normal. The javascript frontend is still the same, I might rewrite that too since it's old backbone.js code. -Uh, this is not very easy to use/setup/or anything. Consider it WIP. +This is not very easy to use/setup/or anything. Sorry! Consider it WIP. ## Installation @@ -44,14 +44,13 @@ Uh, this is not very easy to use/setup/or anything. Consider it WIP. 6. Create MySQL table and user - ```sh $ msyqladmin -uroot -p create neko + $ msyqladmin -uroot -p create neko $ mysql -uroot -p neko < init.sql $ echo "probably a good idea to make a limited privilege user" $ mysql -uroot -p neko CREATE USER 'neko'@'localhost' identified by 'password' yourgreatpasswordhere; GRANT ALL PRIVILEGES ON neko.* TO 'neko'@'localhost'; - ``` - + 7. Configuration - copy example configuration and edit as needed $ cp config.example config.json |