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
- Host: GitHub
- URL: https://github.com/diwasrimal/echo-backend
- Owner: diwasrimal
- Created: 2024-09-09T04:29:59.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-09T07:16:48.000Z (over 1 year ago)
- Last Synced: 2024-11-19T09:56:28.928Z (over 1 year ago)
- Topics: backend, chat-application, go, postgresql
- Language: Go
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```