von-network
A portable development level Indy Node network.
파일 탐색기
- 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
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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
설명 보기 ▼
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
설명 보기 ▼
unzip
Zip 아카이브에서 파일/디렉토리를 추출.
관련 항목: `zip`.
더 많은 정보: <https://manned.org/unzip>.
unzip {{path/to/archive1.zip path/to/archive2.zip ...}}
특정 아카이브에서 모든 파일/디렉토리를 현재 디렉토리에 추출:
unzip {{path/to/archive1.zip path/to/archive2.zip ...}} -d {{path/to/output}}
아카이브에서 파일/디렉토리를 특정 경로로 추출:
unzip -c {{path/to/archive1.zip path/to/archive2.zip ...}}
아카이브에서 파일/디렉토리를 추출하고 추출된 파일 이름과 함께 `stdout`으로 출력:
virtualenv
설명 보기 ▼
virtualenv
가상 격리된 Python 환경 생성.
더 많은 정보: <https://virtualenv.pypa.io/en/latest/cli_interface.html>.
virtualenv {{path/to/venv}}
새 환경 생성:
virtualenv --prompt {{prompt_prefix}} {{path/to/venv}}
프롬프트 접두사를 사용자 정의:
virtualenv {{[-p|--python]}} {{path/to/pythonbin}} {{path/to/venv}}
virtualenv에 다른 버전의 Python 사용:
apt install
설명 보기 ▼
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:
