Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qwidex/go-chat
https://github.com/qwidex/go-chat
chat-application gin go jwt mongodb websockets
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/qwidex/go-chat
- Owner: QWIDEX
- Created: 2024-08-11T20:16:06.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T15:49:36.000Z (4 months ago)
- Last Synced: 2024-10-16T18:58:11.711Z (2 months ago)
- Topics: chat-application, gin, go, jwt, mongodb, websockets
- Language: Go
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project go-chat
Docker wasn't set up, so MongoDB is currently being hosted on Atlas.
## MakeFile
run all make commands with clean tests
```bash
make all build
```build the application
```bash
make build
```run the application
```bash
make run
```Create DB container
```bash
make docker-run
```Shutdown DB container
```bash
make docker-down
```live reload the application
```bash
make watch
```run the test suite
```bash
make test
```clean up binary from the last build
```bash
make clean
```