Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 347 Bytes

File metadata and controls

34 lines (23 loc) · 347 Bytes

Minimal Spotify Gin API

Prerequisites

  • Go 1.22
  • Postgresql 15

Development

.env example

DB_HOST="localhost"
DB_USER="go_practice"
DB_PASS="123456"
DB_NAME="go_practice"
DB_PORT="5314"
REDIS_HOST="localhost"
REDIS_PORT="6378"

Run the gin app

make dev

Run tests

make test