Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 549 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 549 Bytes

Echo Backend

This is the backend code repository for echo chat application.

Build

Requirements

  • Go
  • PostgreSQL
git clone https://github.com/diwasrimal/echo-backend
cd echo-backend
createdb echochat-db                                # -+
psql -d echochat-db -f ./db/sql/create_tables.sql   #  |- or just `make`
go build .                                          # -+

Run

Make your own .env from .env.example with correct values and run.

./echo-backend