Convos is a multiuser chat application that runs in your web browser.
This repo contains files that is used to build the convos.chat website.
# Convos has a CMS that is used to render the website
git clone [email protected]:convos-chat/convos
./convos/script/convos daemon
# This environment variable should be displayed when starting "convos daemon"
export CONVOS_HOME="$HOME/.local/share/convos/";
# Clone the website
git clone [email protected]:convos-chat/www.convos.chat $CONVOS_HOME/content
# Make changes
cd $CONVOS_HOME/content
$EDITOR index.md
git commit -a -m "made some changes"
git push origin main