Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calvinchengx/fiber-go-pg
https://github.com/calvinchengx/fiber-go-pg
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/calvinchengx/fiber-go-pg
- Owner: calvinchengx
- Created: 2020-02-23T09:20:23.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-17T03:25:18.000Z (over 2 years ago)
- Last Synced: 2024-11-16T01:37:27.952Z (3 months ago)
- Language: Go
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# golang fiber with go-pg orm
An example project that uses fiber as webserver, and go-pg library for connecting with a PostgreSQL database.
## Get started
```bash
# postresql config
cp .env.sample .env
source .env
``````bash
# get dependencies and run
go get -v ./...
go run .
```