...
Installation and Configuration
...
Run and configure validator
Create a virtual environment:
Code Block cd validator python3.1011 -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 NEXT_PUBLIC_VALIDATOR=http://127.0.0.1:5000
...