An open API service indexing awesome lists of open source software.

https://github.com/diwasrimal/echo-backend

Go backend for echo chat app
https://github.com/diwasrimal/echo-backend

backend chat-application go postgresql

Last synced: 6 months ago
JSON representation

Go backend for echo chat app

Awesome Lists containing this project

README

          

## Echo Backend

This is the backend code repository for [echo](https://github.com/diwasrimal/echo) chat application.

### Build

#### Requirements
* Go
* PostgreSQL

```console
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.

```console
./echo-backend
```