An open API service indexing awesome lists of open source software.

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

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
```