von-network
A portable development level Indy Node network.
File Explorer
- action.yaml
- publish.yaml
- dependabot.yml
- auth_rules
- genesis_dev
- genesis_prod
- genesis_test
- read_ledger
- von_generate_transactions
- apply-taa
- attach-wallet
- create-signed-cred-def
- create-signed-schema
- create-wallet
- cred_def.py
- detach-wallet
- did-list
- endorse-transaction
- export-wallet
- generate_did.py
- import-wallet
- README.md
- set_did_metadata.py
- start-session
- write-transaction
- sample_aml.json
- sample_taa.json
- AddNewNode.md
- Indy-CLI.md
- Troubleshooting.md
- UsingVONNetwork.md
- Writing Transactions to a Ledger for an Un-privileged Author.md
- iiw_demo_genesis
- ledger-browser-deploy.dev.param
- ledger-browser-deploy.overrides.sh
- ledger-browser-deploy.param
- ledger-browser-deploy.prod.param
- ledger-browser-deploy.test.param
- ledger-browser-deploy.yaml
- README.md
- settings.sh
- init_genesis.sh
- manage
- start_client.sh
- start_node.sh
- start_nodes.sh
- start_synctest.sh
- start_webserver.sh
- index.css
- common.js
- index.js
- ledger.js
- analytics.html
- favicon.ico
- header.html
- index.html
- ledger.html
- ledger_state.html
- __init__.py
- anchor.py
- requirements.txt
- server.py
- synctest.py
- utils.py
- .dockerignore
- .editorconfig
- .gitattributes
- .gitignore
- CODE_OF_CONDUCT.md
- COMPLIANCE.yaml
- CONTRIBUTING.md
- docker-compose.yml
- Dockerfile
- indy_config.py
- LICENSE
- manage
- README.md
- setup.cfg
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
unzip
View Details ▼
unzip
Extract files/directories from Zip archives.
See also: `zip`.
unzip {{path/to/archive1.zip path/to/archive2.zip ...}}
Extract all files/directories from specific archives into the current directory:
unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}
Extract files/directories from archives to a specific path:
unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}
Extract files/directories from archives to `stdout` alongside the extracted file names:
virtualenv
View Details ▼
virtualenv
Create virtual isolated Python environments.
virtualenv {{path/to/venv}}
Create a new environment:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
Customize the prompt prefix:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
Use a different version of Python with virtualenv:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
