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
$GOHOME
git 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.json
for development configurations. -
Edit
./glide.yaml
. Change the project name. -
Install go dependencies
glide update
-
Run development server
npm start
The server runs at
http://localhost:8081
by default. The client athttp://localhost:8082
.