Versions Compared

Key

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

...

  1. Run and configure validator

Create a virtual environment:

Code Block
languagebash
cd validator
python3.10 -m venv venv # Create virtual environment
source environment

Activate the virtual environment:

Windows: venv\Scripts\activate

Linux/macOS: source venv/bin/activate

...

#

...

Use

...

virtual

...

enviornment

Run the validator:

Code Block
flask --app api run

Add the validator to .env:

Code Block
languagebash
# DEGREE VALIDATOR
VALIDATOR=<http://localhost:5000>

...