https://github.com/leylahosseini/echo-gorm-postgres
Boilerplate Echo Gorm Postgres
https://github.com/leylahosseini/echo-gorm-postgres
crud crud-operation echo echo-framework gorm postgres
Last synced: 4 months ago
JSON representation
Boilerplate Echo Gorm Postgres
- Host: GitHub
- URL: https://github.com/leylahosseini/echo-gorm-postgres
- Owner: leylahosseini
- Created: 2023-06-17T06:54:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-01T07:40:57.000Z (about 1 year ago)
- Last Synced: 2025-05-02T10:49:52.137Z (8 months ago)
- Topics: crud, crud-operation, echo, echo-framework, gorm, postgres
- Language: Go
- Homepage:
- Size: 2.83 MB
- Stars: 1
- 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