This is an example application to show and explain features of QOR.
# Get example app
$ go get -u github.com/qor/qor-example
# Setup database
$ mysql -uroot -p
mysql> CREATE DATABASE qor_example;
# Run Application
$ cd $GOPATH/src/github.com/qor/qor-example
$ go run main.go
$ go run db/seeds/main.go db/seeds/seeds.go
$ go test $(go list ./... | grep -v /vendor/ | grep -v /db/)
Qor Example admin configuration
Online Demo Website: demo.getqor.com/admin
Online Example APIs:
- Users: http://demo.getqor.com/api/users.json
- User 1: http://demo.getqor.com/api/users/1.json
- Orders: http://demo.getqor.com/api/orders.json
- Products: http://demo.getqor.com/api/products.json
- Product 1's ColorVariations http://demo.getqor.com/api/products/1/color_variations.json
- Product 1's ColorVariation 1 http://demo.getqor.com/api/products/1/color_variations/1.json
Released under the MIT License.