🛠️Set up and Run

The following sections cover setting up the client and server, as well as running the application.

Client Setup

Step 1: Navigate to the client directory:
cd client
Step 2: Install the dependencies:
npm install
Step 3: Starting the application:
npm start

The application should now be running on http://localhost:5173.

Server Setup

Step 1: Navigate to the server directory:
cd server
Step 2: Create and activate a virtual environment:
python3 -m venv venv

source venv/bin/activate  # On Windows use `venv\Scripts\activate`
Step 3: Install the dependencies:
pip install -r requirements.txt
Step 4: Start the application:
flask run

The server should now be running on http://localhost:5000.

Running using Docker.

Navigate to the root directory and run the following command to start the application:

docker-compose build
docker-compose up -d #running in detached mode

This should boot the applications and the UI can be accessed via http://localhost.

Last updated