...
Run and configure validator
Create a virtual environment:
Code Block | ||
---|---|---|
| ||
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 | ||
---|---|---|
| ||
# DEGREE VALIDATOR VALIDATOR=<http://localhost:5000> |
...