...
Run and configure validator
Create a virtual environment:
Code Block cd validator python3.10 -m venv venv # Create virtual environment
Activate the virtual environment:
- Windows:venv\Scripts\activate
- Linux/macOS:source venv/bin/activate
Install dependencies:
Code Block pip install -r requirements.txt
Run the validator:
Code Block flask --app api run
Add the validator to
.env
:Code Block # DEGREE VALIDATOR VALIDATOR=<http://localhost:50020>
...