Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.05 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.05 KB

This is a monorepo for Kali Wrappr.

Wrappr Structure

Screenshot 2022-09-14 062444

Repo Structure

 ├─ frontend - "React, nextjs, ethers, wagmi, rainbowkit"
 │─ backend - "Subgraph scripts for Kali nodes on TheGraph network"
 │─ contracts - "Solidity smart contracts, hardhat setup"
 │─ e2e-tests - "End-to-end full stack tests"

Each of the above subdirectories has its own README file with additional information.

Dockerized services

Each of the services in the monorepo can be started separately or all together via docker-compose.

docker-compose up frontend
docker-compose up backend
docker-compose up contracts

To start all together:

docker-compose up

To start all in daemon mode

docker-compose up -d

To watch log files in daemon mode

docker-compose logs --follow