Setup
mkdir ~/validityBase && cd ~/validityBasepip install git+https://github.com/validityBase/vbase-py.gitgit clone https://github.com/validityBase/vbase-py-tools.gitcd vbase-py-toolspip3 install -r requirements.txtpython3 -m tools.config_envDo you want to configure the vBase API key? (y/n) [yes]:Do you want to generate a new private key? (y/n) [yes]:Do you want to configure AWS access keys?
# Forwarder Configuration # URL of the production vBase forwarder service. # Users should not change this value. VBASE_FORWARDER_URL = "https://api.vbase.com/forwarder/" # User API key for accessing the vBase forwarder service. # Users should set this value to the API key they received from vBase. VBASE_API_KEY = "YOUR_VBASE_API_KEY" ... # User Private Key # The private key for making stamps/commitments. # This key signs and controls all operations -- it must be kept secret. # vBase will never request this value. VBASE_COMMITMENT_SERVICE_PRIVATE_KEY = "YOUR_VBASE_COMMITMENT_SERVICE_PRIVATE_KEY" ... # AWS configuration: AWS_ACCESS_KEY_ID = "YOUR_AWS_ACCESS_KEY_ID" AWS_SECRET_ACCESS_KEY = "YOUR_AWS_SECRET_ACCESS_KEY"python3 -m tests.test_vbase_basicspython3 -m tools.commit_s3_objects --h
Last updated

