Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 448 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 448 Bytes

Install guide

Prerequisites

  1. Go
  2. PostgreSQL
  3. Minio
  4. GoMigrate

Setup

cd backend-app
docker-compose up -d minio
go mod init
export POSTGRESQL_URI={YOUR_DB_URI}

Setup database

go run main.go db upgrade
go run main.go db seed  # optional

Run

go run main.go runserver