https://github.com/kayprogrammer/simple-fiber-ecommerce
A simple crud ecommerce api built with Go Fiber
https://github.com/kayprogrammer/simple-fiber-ecommerce
fiber go gorm sqlite3
Last synced: 11 months ago
JSON representation
A simple crud ecommerce api built with Go Fiber
- Host: GitHub
- URL: https://github.com/kayprogrammer/simple-fiber-ecommerce
- Owner: kayprogrammer
- Created: 2023-03-31T00:43:04.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T19:37:44.000Z (almost 3 years ago)
- Last Synced: 2025-01-29T15:22:03.288Z (about 1 year ago)
- Topics: fiber, go, gorm, sqlite3
- Language: Go
- Homepage:
- Size: 37.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ECOMMERCE API (WIP)
A beginner's guide to the Fiber framework.
#### Tutorial: [Build a REST API in Go using Fiber + GORM](https://www.youtube.com/watch?v=dpx6hpr-wE8) by rithmic
#### Go Docs: [Documentation](https://go.dev/doc/)
#### Fiber Docs: [Documentation](https://docs.gofiber.io)
## How to run locally
* Download this repo or run:
```bash
$ git clone git@github.com:kayprogrammer/simple-fiber-ecommerce.git
```
#### In the root directory:
- Install all dependencies
```bash
$ go get ./...
```
- Build and run server
```bash
$ go run .
```
OR
```bash
$ air
```