- Clone the repository and navigate to the project folder:
git clone https://github.com/mateolafalce/front-matching-algorithm.git && cd front-matching-algorithm- Create a
.envfile in the root directory with your environment variables:
cp .env.example .env
# Edit .env with your configuration- Build and start the services:
docker-compose up --build-
Access the application:
- Frontend: http://localhost:5173
- Backend: http://localhost:5000
-
To stop the services:
docker-compose downAdditional Docker Commands:
# Run in detached mode (background)
docker-compose up -d
# View logs
docker-compose logs -f
# Rebuild services
docker-compose build
# Stop and remove containers, networks
docker-compose down -v- Clone the repository and navigate to the project folder:
git clone <repository-url> && cd front-matching-algorithm- Create and activate a virtual environment:
python3 -m venv venv && source venv/bin/activate- Install the dependencies:
pip install -r requirements.txt- Start the Flask application:
python app.pycd frontnpm install && npm run dev