Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robalb/morsechat
an online morse code chat
https://github.com/robalb/morsechat
amateur-radio cw-keyer morse morse-code webapp
Last synced: 6 days ago
JSON representation
an online morse code chat
- Host: GitHub
- URL: https://github.com/robalb/morsechat
- Owner: robalb
- License: gpl-3.0
- Created: 2017-12-23T21:12:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-20T23:13:44.000Z (7 months ago)
- Last Synced: 2024-04-21T00:24:02.342Z (7 months ago)
- Topics: amateur-radio, cw-keyer, morse, morse-code, webapp
- Language: JavaScript
- Homepage: http://morse.halb.it/
- Size: 3.97 MB
- Stars: 60
- Watchers: 3
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Morsechat
[![Website](https://img.shields.io/website?down_message=offline&up_message=up&url=https%3A%2F%2Fmorse.halb.it)](https://morse.halb.it)
[![Online](https://img.shields.io/badge/dynamic/json?label=online%20users&query=%24.online_users&url=https%3A%2F%2Fmorse.halb.it%2Fapi%2Fv1%2Fpublic_stats)](https://morse.halb.it)
[![Channels](https://img.shields.io/badge/dynamic/json?label=active%20channels&query=%24.active_channels&url=https%3A%2F%2Fmorse.halb.it%2Fapi%2Fv1%2Fpublic_stats)](https://morse.halb.it)
![license](https://img.shields.io/github/license/robalb/morsechat.svg)
[![Grade](https://img.shields.io/mozilla-observatory/grade/morse.halb.it?publish)](https://observatory.mozilla.org/analyze/morse.halb.it)[![Discord](https://img.shields.io/discord/842882128555016212?label=Discord%20community)](https://discord.gg/JNwsmHuKwd)
An online morse code chat, allowing users from all over the world to practice and communicate in morse code without the need for expensive equipment. Live at [morse.halb.it](https://morse.halb.it/)
[support the project](https://ko-fi.com/K3K6D3NPD)
## screenshots
## configuration
Copy the file env.example into .env
in the .env configure your pusher credentials.
You can generate them from your self-hosted instance of socketi (see socketi.app)
Or you can use pusher.com## development
clone this repository `git clone https://github.com/robalb/morsechat.git`
navigate into the repository `cd morsechat`
start the api server in development mode `docker-compose up`
start vite in development mode `cd /web && npm run dev`
## production
The easiest way to run the webapp in a production environment is with the provided docker-compose.prod,
`docker-compose -f docker-compose.prod.yml up --build`
This method will also generate and manage a mariadb image, but you should replace it with something more stableAlternatively you can deploy the app on a k8s kluster using the manifests in `kubernetes/base` but first you will need to
setup on your own a traefik ingress controller, certmanager, and a mariadb database Service.
The nginx webserver is configured to handle X-Forwarder-For headers coming from an ingress with proxy protocol enabled.
You can configure it in flaskapp.confThe live website on halb.it is built using github workflows, and deployed on a k8s cluster with argoCD