https://github.com/awnumar/ephemeral
Web-based end-to-end encrypted multi-party chat server
https://github.com/awnumar/ephemeral
Last synced: 6 months ago
JSON representation
Web-based end-to-end encrypted multi-party chat server
- Host: GitHub
- URL: https://github.com/awnumar/ephemeral
- Owner: awnumar
- License: agpl-3.0
- Created: 2020-02-21T17:06:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T17:21:30.000Z (about 6 years ago)
- Last Synced: 2025-01-24T17:32:15.533Z (over 1 year ago)
- Language: Vue
- Homepage:
- Size: 118 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ephemeral
Web-based end-to-end encrypted chat application.
**This is an experiment and is not intended for production use. _No guarantees of security are given._**
## Instructions
1. Install dependencies.
```bash
make install
```
2. Build web-app files.
```bash
make build
```
3. Launch the service.
```bash
make run
```
Once step **1** has been run once, subsequent runs may simply call:
```bash
make
```
which will automatically execute steps **2** and **3**. Step **1** does not have to be repeated unless `make clean` is run.
By default the service runs on port `8080`, so navigate to `http://127.0.0.1:8080`.
### Web-app
To launch the frontend web-app independently of the server, see the `README.md` file within the web-app directory.