A simple Go (Golang) Blogging Platform (WIP)
You must have the following stack:
- Go 1.6+
- glide
- goose
- npm
- PostgreSQL
-
Clone the repository inside your
$GOHOMEgit clone https://github.com/mewben/onix.git onix -
Install dependencies
cd onix npm install -
Edit
./db/dbconf.yml.sample. Put your database credentials and rename to./db/dbconf.yml -
Edit
./env.jsonfor development configurations. -
Edit
./glide.yaml. Change the project name. -
Install go dependencies
glide update -
Run development server
npm startThe server runs at
http://localhost:8081by default. The client athttp://localhost:8082.