https://github.com/parassolanki/simple-go-crud-api
Simple go CRUD api with bulit-in net/http module
https://github.com/parassolanki/simple-go-crud-api
Last synced: about 1 year ago
JSON representation
Simple go CRUD api with bulit-in net/http module
- Host: GitHub
- URL: https://github.com/parassolanki/simple-go-crud-api
- Owner: ParasSolanki
- Created: 2024-12-25T16:46:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T16:49:44.000Z (over 1 year ago)
- Last Synced: 2025-05-16T02:39:00.739Z (about 1 year ago)
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Go CRUD Api
Simple go CRUD api with bulit-in net/http module.
Keeping all the records in local json file and modifying it.
### Setup
To setup the project you will need to run following command:
```shell
go mod tidy
```
Also, since this project uses [Air](https://github.com/air-verse/air) for hot reloading application while developing you will need to install Air CLI as well.
With go 1.23 or higher:
```shell
go install github.com/air-verse/air@latest
```
### Run Locally
```shell
air
```