-
Notifications
You must be signed in to change notification settings - Fork 14
Developer Guide
Meenakshi Dhanani edited this page May 12, 2020
·
1 revision
Clone the repository.
cd infra
docker-compose -f mongodb-kafka.yml -f docker-compose-web.yml up --build -d
Navigate to localhost:3000 and you should see the application up and running!
- Start Zookeper
zookeeper-server-start /usr/local/etc/kafka/zookeeper.properties
- Start Kafka
kafka-server-start /usr/local/etc/kafka/server.properties
- Start MongoDB
mongod
- Start Kafka Consumers
cd web/server
npm install
npm run start-consumers
- Run Epirust engine
cd engine
cargo run --release -- --daemon
- Run server
cd web/server
npm install
npm start
- Run front end react app
cd web/react-spa
npm install
npm start
Navigate to the front end running on localhost:3001 and play!