Frontend Application Odyssey for the Hackathon
DEMO: https://identitree-app.herokuapp.com/
- Start Mongo db Server with a) Docker or b) local mongodb installation.
docker-compose up -d- Copy env file
cd backend
cp .env.example ~/src/.env- Start Node.js app (in the
/backendfolder)
npm install
npm run build
npm run watch- Start React app (in the
/frontendfolder)
npm install
npm run startYou can just run the backend with npm run devif you have nodemon and ts-nodeinstalled globaly.
npm i -g nodemon
npm i -g ts-node
npm run dev