https://github.com/razshare/frizzante-example-chat
https://github.com/razshare/frizzante-example-chat
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/razshare/frizzante-example-chat
- Owner: razshare
- License: apache-2.0
- Created: 2025-06-15T12:40:50.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-09-23T05:25:18.000Z (8 months ago)
- Last Synced: 2025-09-26T16:46:29.458Z (8 months ago)
- Language: Go
- Size: 365 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What is this?
This is a live chat application.
# Prerequisites
### Install build tools
On Linux
```sh
sudo apt-get install build-essential
```
On Darwin (MacOS)
```sh
xcode-select --install
```
### Install `frizzante`
```sh
go install github.com/razshare/frizzante@latest
```
>[!TIP]
>Remember to add Go binaries to your path.
>
> ```sh
> export GOPATH=$HOME/go
> export PATH=$PATH:$GOPATH/bin
> ```
# Get Started
Configure project
```sh
make configure
```
Start development mode with
```sh
make dev
```
# Build
Build for production with
```sh
make build
```
This will create a standalone `.gen/bin/app` binary file.