Skip to content

Latest commit

 

History

History
executable file
·
50 lines (32 loc) · 2.35 KB

README.md

File metadata and controls

executable file
·
50 lines (32 loc) · 2.35 KB

License Quality Gate Status codecov

PAY API

BC Registries payment services.

Development Environment

Follow the instructions of the Development Readme to setup your local development environment.

Development Setup

  1. Follow the instructions to checkout the project from GitHub.
  2. Open the pay-api directory in VS Code to treat it as a project (or WSL projec). To prevent version clashes, set up a virtual environment to install the Python packages used by this project.
  3. Run make setup to set up the virtual environment and install libraries.
  4. Next run pip install . to set up the environment for running tests.

You also need to set up the variables used for environment-specific settings:

  1. Copy the dotenv template file to somewhere above the source code and rename to .env. You will need to fill in missing values.

Running the PAY Database on localhost

To prepare your local database:

  1. In the root project folder: docker-compose up -d
  2. In your venv environment: python manage.py db upgrade

Running PAY-API

  1. Start the flask server with (python -m flask run -p 5000)
  2. View the OpenAPI Docs.

Running Liniting

  1. Run make flake8 or flake8 src/pay_api tests.
  2. Run make pylint or pylint --rcfile=setup.cfg --disable=C0301,W0511 src/pay_api test

Running Unit Tests

  1. Tests are run from the Status bar at the bottom of the workbench in VS Code or pytest command.
  2. Next run make coverage to generate the coverage report, which appears in the htmlcov directory.
  3. You may need to disable code coverage under [tool:pytest] addopts key, to get the debugger to hit a breakpoint.

Openshift Environment

View the document.