A RESTful API example for simple todo application with Go
It is a just simple tutorial or example for making simple RESTful API with Go using gorilla/mux (A nice mux library) and gorm (An ORM for Go)
# Download this project
go get github.com/jmrashed/go-todo-rest-api-example
visit docker jmrashed/go-todo-rest-api-example
Before running API server, you should set the database config with yours or set the your database config with my values on config.go
func GetConfig() *Config {
return &Config{
DB: &DBConfig{
Dialect: "mysql",
Username: "root",
Password: "password",
Name: "todoapp",
Charset: "utf8",
},
}
}
# Build and Run
cd go-todo-rest-api-example
go build
./go-todo-rest-api-example
# API Endpoint : http://127.0.0.1:3000
├── app
│ ├── app.go
│ ├── handler // Our API core handlers
│ │ ├── common.go // Common response functions
│ │ ├── projects.go // APIs for Project model
│ │ └── tasks.go // APIs for Task model
│ └── model
│ └── model.go // Models for our application
├── config
│ └── config.go // Configuration
└── main.go
GET
: Get all projectsPOST
: Create a new project
GET
: Get a projectPUT
: Update a projectDELETE
: Delete a project
PUT
: Archive a projectDELETE
: Restore a project
GET
: Get all tasks of a projectPOST
: Create a new task in a project
GET
: Get a task of a projectPUT
: Update a task of a projectDELETE
: Delete a task of a project
PUT
: Complete a task of a projectDELETE
: Undo a task of a project
- Support basic REST APIs.
- Support Authentication with user for securing the APIs.
- Make convenient wrappers for creating API handlers.
- Write the tests for all APIs.
- Organize the code with packages
- Make docs with GoDoc
- Building a deployment process