|
|
5 年前 | |
|---|---|---|
| client-data | 5 年前 | |
| other-data | 10 年前 | |
| server | 6 年前 | |
| server-data | 5 年前 | |
| .gitignore | 5 年前 | |
| .openodeignore | 6 年前 | |
| .travis.yml | 6 年前 | |
| AUTHORS | 12 年前 | |
| Dockerfile | 6 年前 | |
| LICENSE | 7 年前 | |
| README.md | 5 年前 | |
| docker-compose.yml | 6 年前 | |
| package-lock.json | 5 年前 | |
| package.json | 5 年前 |
WBO is an online collaborative whiteboard that allows many users to draw simultaneously on a large virtual board. The board is updated in real time for all connected users, and its state is always persisted. It can be used for many different purposes, including art, entertainment, design, teaching.
A demonstration server is available at wbo.openode.io



If you have your own web server, and want to run a private instance of WBO on it, you can.
git clone git@github.com:lovasoa/whitebophir.git
cd whitebophir
You can run the official docker image hosted on dockerhub or build your own very easily using docker compose.
At the moment, WBO has a very simple persistance model: it saves each whiteboard as a separate json file in a directory.
You can edit docker-compose.yml to choose where you want to persist the data :
volumes:
- ./server-data:/opt/app/server-data
Here, I chose to persist the data in ./server-data (inside the directory where I cloned the repo).
sudo docker-compose up
This will start wbo on port 80. (You can change the port number in docker-compose.yaml if you want).
Alternatively, you can run the code with node directly, without docker :
npm install
npm start
If you do that, the code is running directly on your machine, without any isolation from the other services. Make sure you do not run another sensitive service on the same host.
If you experience an issue or want to propose a new feature in WBO, please open a github issue.
Demonstration server hosted by openode