Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leylahosseini/boilerplate-echo-gorm-postgres
Boilerplate Echo Gorm Postgres
https://github.com/leylahosseini/boilerplate-echo-gorm-postgres
crud crud-operation echo echo-framework gorm postgres
Last synced: 3 days ago
JSON representation
Boilerplate Echo Gorm Postgres
- Host: GitHub
- URL: https://github.com/leylahosseini/boilerplate-echo-gorm-postgres
- Owner: leylahosseini
- Created: 2023-06-17T06:54:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T07:40:57.000Z (14 days ago)
- Last Synced: 2024-11-01T08:25:51.398Z (14 days ago)
- Topics: crud, crud-operation, echo, echo-framework, gorm, postgres
- Language: Go
- Homepage:
- Size: 2.83 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Echo Gorm Postgres
#### This project is basically made for Golang, which uses [Echo](https://github.com/labstack/echo) Gorm and Postgres ,which includes the CRUD operation.
####
curl -X POST localhost:8080/tasks -d '{"name":"task1" , "description":"task1" , "completed":true}' --header "Content-Type: application/json"
curl -X PUT localhost:8080/tasks/:id -d '{"name":"task1" , "description":"task1" , "completed":true}' --header "Content-Type: application/json"
curl -X DELETE localhost:8080/tasks/:id
curl -X GET localhost:8080/tasks