IdentiTree / app

Application for the Odyssey Hackathon
https://identitree-app.herokuapp.com
MIT License
0 stars 0 forks source link

frontend

Frontend Application Odyssey for the Hackathon

DEMO: https://identitree-app.herokuapp.com/

Landingpage/Docs

Setup Local

Backend

  1. Start Mongo db Server with a) Docker or b) local mongodb installation.
docker-compose up -d
  1. Copy env file

    cd backend
    cp .env.example ~/src/.env
  2. Start Node.js app (in the /backend folder)

    npm install
    npm run build
    npm run watch
  3. Start React app (in the /frontend folder)

    npm install
    npm run start

Development

You 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