https://github.com/leonardoalonso/rest-go
rest api example in go
https://github.com/leonardoalonso/rest-go
Last synced: 2 months ago
JSON representation
rest api example in go
- Host: GitHub
- URL: https://github.com/leonardoalonso/rest-go
- Owner: leonardoAlonso
- Created: 2024-09-22T17:29:23.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-01-03T19:18:46.000Z (5 months ago)
- Last Synced: 2025-01-27T07:16:10.208Z (4 months ago)
- Language: Go
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Gobank
Gobank is a simple bank application that allows users to create accounts, deposit, withdraw and transfer money between accounts.
It is a simple RESTful API that uses a PostgreSQL database to store user information and account balances.
Uses JWT for authentication and authorization.This project has been created following the tutorial [Complete JSON API project in Golang](https://www.youtube.com/playlist?list=PL0xRBLFXXsP6nudFDqMXzrvQCZrxSOm-2) on his [Youtube Channel](https://www.youtube.com/@anthonygg_).
## Installation
1. Clone the repository
2. Make sure docker and docker-compose are installed on your machine
3 Run the following command to start the application```bash
docker-compose up -d && docker-compose logs -f web
```