To run the backend, follow these steps:
-
Navigate to the backend directory:
cd backend
-
Install dependencies:
npm install
-
Navigate to the Algorand directory:
cd algorand
-
Run Docker Compose to start the Algorand services:
docker-compose up -d
-
Return to the backend root directory:
cd ..
-
Start the development server:
npm run dev
The backend server should now be running and connected to the Algorand services.
To run the frontend, follow these steps:
-
Navigate to the frontend directory:
cd frontend
-
Install dependencies:
npm install
-
Start the development server:
npm run start