aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAdam Mathes <adam@trenchant.org>2017-01-24 19:52:28 -0800
committerAdam Mathes <adam@trenchant.org>2017-01-24 19:52:28 -0800
commit92c7333228f917641f3043285982aabd97db7fa1 (patch)
tree8bcaaf43cfd026ca1d8550223c7af9acb2eedd77 /README.md
parent9e38fcb4f6b0590e69f6bebb8bfc0b31db042f05 (diff)
downloadneko-92c7333228f917641f3043285982aabd97db7fa1.tar.gz
neko-92c7333228f917641f3043285982aabd97db7fa1.tar.bz2
neko-92c7333228f917641f3043285982aabd97db7fa1.zip
documentation is hard, again
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 6 insertions, 14 deletions
diff --git a/README.md b/README.md
index e96c423..52288ff 100644
--- a/README.md
+++ b/README.md
@@ -32,53 +32,45 @@ This is not very easy to use/setup/or anything. Sorry! Consider it WIP.
## Installation
-### [Install golang](https://golang.org)
+### Prerequesites
-Go is great! Yay!
+[Install Go -- https:/golang.org](https://golang.org)
+
+[Install MySQL](https://dev.mysql.com) or [MariaDB](https://mariadb.com) or some other drop-in replacement.
+
+Postgresql support is left as an exercise for the reader to implement and send a pull request for.
### Set up $GOPATH if one doesn't exist already
- ```
$ mkdir $HOME/go
$ export GOPATH=$HOME/go
- ```
### Get neko code
- ```
$ go get github.com/adammathes/neko
- ```
### Get dependencies
-
- ```
$ cd $HOME/go/src/github.com/adammathes/neko
$ make deps
OR
$ go get [each dependency listed in the Makefile you ignored]
- ```
### Build
-
- ```
$ go build cmd/nekoweb
$ go build cmd/nekocrawl
- ```
This should create "nekoweb" and "nekocrawl" binaries because command line flags are annoying.
### Create MySQL table and user
- ```
$ 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';
- ```
### Configuration - copy example configuration and edit as needed