aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
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