This repository serves as the main project for a gamification platform. It includes the services and apps which compose tha entire platform
gamification_api
: Backend API to handle data and logic.gamification_frontend
: Frontend web interface for user interaction.
gamification_platform/
├── gamification_api (submodule)
├── gamification_frontend (submodule)
└── README.md
docker-compose up --build
To clone this repository, including all submodules, you can use:
git clone --recursive [email protected]:alquimistas-org/gamification_platform.git
If you've already cloned the repository without submodules, run:
git submodule update --init
If you want to pull changes that affect not only the main repository but also update all the included submodules, you can use:
git pull --recurse-submodules
To add a new submodule to the project, you can:
git submodule add <repository_url>