This repository is still in use for the readr news-project.
remove the unless code remove the redis connections
RESTful API for the READr site
Use config/main_sample.json
as template, put your mySQL connection address, username and password in a file main.json
and save it in config/
You could also use a customized config file, like main_dev.json
, put under directory config/
.
go run main.go
when using customized configuration file:
go run main.go -file=main_dev
go run $(ls -1 *.go | grep -v _test.go)
go test ./routes
In this project we build some handy tools as alternatives to original go toolsets. These commands are synonyms to for verbose original go tool command, and could be used to build, test, run, or get dependencies.
This was set to run all *.go files except _test.go files. You could run the server by simply typing in:
make run
It's default to run test in all directory.
make test
Use this to install package.
make deps
make build-alpine
GET /member/[id]
GET /post/[id]
GET /posts
GET /members
/posts?max_result=50&page=1&sort=-updated_at
/posts?sort=-created_at,author.nickname
Default : max_result=20
, page=1
, sort=-updated_at
Use data keys for ascending sort order. Attach -
for descending. For example, sort=updated_by
is sorting using ascending updated_by
, while sort=-updated_by
is descending.
Multiple field sorting could be achieved with keys seperated by comma ,
/posts?author={"$in":["superman"]}&active{"$nin":[1,3]}
There are posts filters for author and active now.
To filter the posts of which the author is superman, and posts status active
not [1,3]
pass query parameter as follows:
Currently operator only support $in
and $nin