https://github.com/ega4432/chat
Chat application using WebSocket
https://github.com/ega4432/chat
bootstrap3 chat-application go golang websocket
Last synced: about 2 months ago
JSON representation
Chat application using WebSocket
- Host: GitHub
- URL: https://github.com/ega4432/chat
- Owner: ega4432
- Created: 2019-10-23T06:49:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T13:04:44.000Z (over 6 years ago)
- Last Synced: 2025-01-28T23:49:02.315Z (over 1 year ago)
- Topics: bootstrap3, chat-application, go, golang, websocket
- Language: Go
- Homepage:
- Size: 17.5 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chat
## Overview
This is a Chat application using WebSocket. ( WebSocket is a communication standard for computer networks. It is a technical standard for realizing bidirectional communication in Web applications. )

## Installation
### Requirements
- Golang ver1.12.6
### Setting
First of all, clone this repository.
Then excute `go get` the packages you need. Also create a file to write environment variables with the name `.env` and describe the following.
```
GO111MODULE=on
SECURITY_KEY=
FACEBOOK_CLIENT=
FACEBOOK_SECRET=
FACEBOOK_CALL_BACK_URL=
GITHUB_CLIENT=
GITHUB_SECRET=
GITHUB_CALL_BACK_URL=
GOOGLE_CLIENT=
GOOGLE_SECRET=
GOOGLE_CALL_BACK_URL=
```
## Usage
Build and Start web server. Let's open the URL specified by the host in your browser.
```
❯ go build -o chat
❯ ./chat -host=":8080"
```