940 B
940 B
waffle
Waffle is a simple, focused chat application and protocol meant to be self-hosted.
Hosting
Docker
If you plan on self-hosting Waffle, it's recommended to use Docker and docker-compose like shown below. This isn't recommended if you plan on developing Waffle. The guide below assumes you have git
installed on your system (on Debian/Ubuntu: sudo apt install git
):
- Install Docker using the official guide
- Install docker-compose using the official guide
- Clone the Waffle repository:
git clone https://git.hippoz.xyz/hippoz/waffle
- Enter the repository's directory:
cd waffle
- Optionally, you can open up
docker-compose.yml
in your text editor to change options like the port. The default port is5002
. - Start the stack:
docker-compose up -d
- All done! 🎉 Waffle is now running on port
5002
.