/agora

Collaborative text edition with amendment and votes

Primary LanguageJavaScript

Agora

Agora is a solution to edit document in a collaborative way based on amend and vote

it's build on neo4J, node, elastic, React and mercure

the website is visble https://queel.fr

Installation on a development mode

  • install docker
  • clone repository
git clone git@github.com:etouraille/agora.git
git submodule init
git submodule update
  • build container and launch
cd docker
docker compose build
docker compose up -d
  • set env variable
cd node
cp .env.example .env.development
  • install dependencies
cd ~/agora/node
npm install 
cd ~/agora/front
npm install
  • launch api
cd ~/agora/node
./start.sh
  • launch front
cd ~/agora/front
npm start