From a73c843f00facf83817a907420c4497ca1613d14 Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Thu, 16 Feb 2017 15:30:08 -0800 Subject: well that date stuff didnt work right at all whoops --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index fa5c13d..9c0afe9 100644 --- a/README.md +++ b/README.md @@ -47,11 +47,11 @@ Postgresql support is left as an exercise for the reader to implement and send a ### Get neko code - $ go get github.com/adammathes/neko + $ go get adammathes.com/neko ### Get dependencies - $ cd $GOPATH/src/github.com/adammathes/neko + $ cd $GOPATH/src/adammathes.com/neko $ make deps or... @@ -71,11 +71,11 @@ Also there's a Makefile there so a simple "make" should work. Maybe? Makefiles a ### Create MySQL table and user - $ msyqladmin -uroot -p create neko + $ mysqladmin -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; + CREATE USER 'neko'@'localhost' identified by 'yourawesomepasswordgoeshere'; GRANT ALL PRIVILEGES ON neko.* TO 'neko'@'localhost'; ### Configuration -- cgit v1.2.3