This API constitutes the register error module
We recommend using a local python environment with virtualenv tool, to avoid messing with the global installation. In the following process we will go through the process of creating such environment (generally known as virtual environment), it will be named .venv
python -m venv .venv # You could name environment as you want.
source .venv/bin/activate
python -m pip install -r requirements.txt
The .env
file will have all configurations to run applications, you have to
create file and write own configuration, you can check all variables in file
.env_example and write you own configuration.
Once, you write all configurations, you should be ready to start your application, the best way to run is through uvicorn module in you virtual environment.