Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installation and Configuration

...

  1. Run and configure validator

    1. Create a virtual environment:

      Code Block
      cd validator
      python3.1011 -m venv venv # Create virtual environment
    2. Activate the virtual environment:
      - Windows: venv\Scripts\activate
      - Linux/macOS: source venv/bin/activate

    3. Install dependencies:

      Code Block
      pip install -r requirements.txt
    4. Run the validator:

      Code Block
      flask --app api run
    5. Add the validator to .env:

      Code Block
      # DEGREE VALIDATOR
      NEXT_PUBLIC_VALIDATOR=http://127.0.0.1:5000

...