The idea for this project is to let reddit collaboratively write a book in a 24 hours.
by oran collins
github.com/wisehackermonkey
oranbusiness@gmail.com
20190106 updated 20200613
The idea for this project is to let reddit collaboratively write a book in a 24 hours.
It works similar to collaborative editing on google docs.
This project uses docker to host the web server, that I manage maintain,
To test it out open two tabs and type something, and see it replicate over to the other tab.
docker login
>docker run -it --rm -p 80:8080 wisehackermonkey/remash
docker run -it --rm -p 80:8080 --name remash wisehackermonkey/remash
docker run -d --restart=always --name remash -p 8080:2000 wisehackermonkey/remash
git clone https://github.com/wisehackermonkey/remash.git
cd remash
docker build . -t wisehackermonkey/remash:arm
docker login
docker push wisehackermonkey/remash:arm
docker run -d --restart=always --name remash -p 2000:8080 wisehackermonkey/remash
pip install -r requirements.txt
set FLASK_APP=main.py
set FLASK_ENV=development
flask run
$env:FLASK_APP="main.py"
$env:FLASK_ENV="development"
flask run
>python main.py
in browser go to
http://localhost:80
Type something into the text box
open another browser tab to
http://localhost:80
and type something else you will see the stuff replicated across the browser tabs!