This guide will help you set up the Clever classroom management app on your local network using Docker.
Create a root folder and set up the following structure:
[name]/
├── frontend/
├── backend/
Replace [name] with your desired project folder name.
cd [name]/frontend
git clone https://github.com/samay90/classroom_management_frontend .cd ../backend
git clone https://github.com/samay90/classroom_management_backend_hackathon .Move the docker-compose.yaml file from the frontend folder to the root [name] folder:
mv frontend/docker-compose.yaml ../Ensure you're back in the root folder:
cd ..To spin up the entire project:
docker compose upThis command will start both the frontend and backend containers and link them via Docker network.
The Clever classroom management app is now running locally on your network! 🎉
- Make sure Docker is installed and running on your system.
- You can stop the containers anytime using:
docker compose down