hnakamur / api2go-gorm-gin-crud-example

[NOT maintained] A CRUD example using api2go, gorm and gin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

api2go-gorm-gin-crud-example

Build Status

This is a CRUD example using jinzhu/gorm and gin-gonic/gin. This example is a fork of the one in manyminds/api2go.

Examples

Examples can be found here.

Database setup

Before running the server or running tests, copy .envrc.example to .envrc and edit .envrc for your need. Two envrinment variables DB_DIALECT and DB_PARAMS are passed to sql.Open(driverName, datasourceName string) (https://golang.org/pkg/database/sql/#Open).

After editing, run the following command to set environment variables DB_DIALECT and DB_PARAMS.

source .envrc

Tests

source .envrc
go test ./...
ginkgo -r                # Alternative
ginkgo watch -r -notify  # Watch for changes

About

[NOT maintained] A CRUD example using api2go, gorm and gin

License:MIT License


Languages

Language:Go 98.5%Language:Shell 1.5%