vl is the verification layer
of verifid, actually the core project that is responsible from verifying identity cards or passports. Basically it's a self deployed API which has 4 main endpoints. It runs on either Docker
or Kubernetes
as a container. All endpoints fit in just two controllers and all endpoints have detailly documented. vl relies on some other verifid and as well as other Open Source Python modules. vl uses Nginx as a load balancer and it's already configured in setup files.
This server was generated by the swagger-codegen project. By using the OpenAPI-Spec from a remote server, you can easily generate a server stub.
- /user
- /sendUserData
- /verify
- /image
- /uploadIdentity
- /uploadProfile
- Python 3.5.2
To run the vl server, please execute the following from the root directory
pip3 install -r requirements.txt
python3 -m vl
and open your browser to here
http://localhost:8080/v1/ui/
Your Swagger definition available here
http://localhost:8080/v1/swagger.json
To run the server on a Docker container, please execute the following from the root directory
# building the image
docker build -t vl .
# starting up a container
docker run -p 5000:5000 vl