aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2017-02-16 15:30:08 -0800
committerAdam Mathes <adam@trenchant.org>2017-02-16 15:30:08 -0800
commita73c843f00facf83817a907420c4497ca1613d14 (patch)
treef58c696f50d39f499005fe63ffd43965dab75054 /README.md
parenta66bd5af075304d50b0033841723c6fde7e1fc7c (diff)
downloadneko-a73c843f00facf83817a907420c4497ca1613d14.tar.gz
neko-a73c843f00facf83817a907420c4497ca1613d14.tar.bz2
neko-a73c843f00facf83817a907420c4497ca1613d14.zip
well that date stuff didnt work right at all whoops
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