https://github.com/pedrobertao/go-crud
go-crud
https://github.com/pedrobertao/go-crud
crud crud-api crud-application fiber golang rest-api restful-api zap
Last synced: 11 months ago
JSON representation
go-crud
- Host: GitHub
- URL: https://github.com/pedrobertao/go-crud
- Owner: pedrobertao
- License: mit
- Created: 2023-07-28T14:08:17.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-14T11:58:02.000Z (almost 3 years ago)
- Last Synced: 2025-06-08T09:39:07.754Z (about 1 year ago)
- Topics: crud, crud-api, crud-application, fiber, golang, rest-api, restful-api, zap
- Language: Go
- Homepage:
- Size: 72.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# go-crud
## _A template for your golang's CRUD application_
## Installation
Requires [golang](https://go.dev/) v1.20 to run.
After cloning or downloading the template , install the dependencies:
```sh
$ cd go-crud
$ go mod tidy
```
## Running
You can run this project from two ways for local development:
```sh
$ make run
```
or
Using the [docker](https://www.docker.com/) compose version of it:
```sh
$ docker-compose up
```
## Testing
You can run this project from two ways for local development:
```sh
$ make test
```
