Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 1.13 KB

README.md

File metadata and controls

50 lines (34 loc) · 1.13 KB

Gamification Platform

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.

Structure

gamification_platform/
├── gamification_api (submodule)
├── gamification_frontend (submodule)
└── README.md

Run with docker-compose"

docker-compose up --build

Clone with submodules

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

Pulling Changes Including Submodules

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

Adding a New Submodule

To add a new submodule to the project, you can:

git submodule add <repository_url>