Skip to content

mateolafalce/front-matching-algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend of a Matching Algorithm

Installation Options

Option 1: Using Docker Compose

  1. Clone the repository and navigate to the project folder:
git clone https://github.com/mateolafalce/front-matching-algorithm.git && cd front-matching-algorithm
  1. Create a .env file in the root directory with your environment variables:
cp .env.example .env
# Edit .env with your configuration
  1. Build and start the services:
docker-compose up --build
  1. Access the application:

  2. To stop the services:

docker-compose down

Additional 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

Option 2: Installation From Source

Backend

  1. Clone the repository and navigate to the project folder:
git clone <repository-url> && cd front-matching-algorithm
  1. Create and activate a virtual environment:
python3 -m venv venv && source venv/bin/activate
  1. Install the dependencies:
pip install -r requirements.txt
  1. Start the Flask application:
python app.py

Frontend

cd front
npm install && npm run dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published