๐Ÿ–ผ๏ธ
Annotate-Lab
  • ๐Ÿ‘‹Welcome to Annotate Lab
  • Overview
    • โœจKey Features
    • ๐Ÿ—ƒ๏ธProject Structure
    • โš™๏ธCustomization
  • Fundamentals
    • โฌ‡๏ธInstallation
    • ๐Ÿ› ๏ธSet up and Run
      • ๐Ÿ“Configuration
      • ๐Ÿ–ผ๏ธAnnotating Images
      • ๐Ÿ’พOutputs
      • ๐ŸงชRunning Tests
      • ๐Ÿ“”Code Formatting
  • Example
    • ๐ŸšฒAnnotating Bicycle
    • ๐Ÿ–ผ๏ธRipe and Unripe Tomatoes Dataset
    • ๐Ÿช„Auto Bounding Box Selection with Segment Anything Model (SAM)
  • โš ๏ธTroubleshooting
  • ๐ŸชชLicense
Powered by GitBook
On this page
  • Client Setup
  • Server Setup
  • Running using Docker.
  1. Fundamentals

Set up and Run

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

PreviousInstallationNextConfiguration

Last updated 11 months ago

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 .

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

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

The server should now be running on .

This should boot the applications and the UI can be accessed via .

๐Ÿ› ๏ธ
http://localhost:5173
http://localhost:5000
http://localhost