moodle-tool_objectfs
Object file storage system for Moodle
파일 탐색기
- ci.yml
- connection.php
- proxy_range_request.php
- tagging_migration_status.php
- tagging_status.php
- tagging_sync_status.php
- token_expiry.php
- candidates_factory.php
- candidates_finder.php
- checker_candidates.php
- deleter_candidates.php
- manipulator_candidates.php
- manipulator_candidates_base.php
- orphaner_candidates.php
- puller_candidates.php
- pusher_candidates.php
- recoverer_candidates.php
- checker.php
- deleter.php
- logger.php
- manipulator.php
- manipulator_builder.php
- object_manipulator.php
- orphaner.php
- puller.php
- pusher.php
- recoverer.php
- location_report_builder.php
- log_size_report_builder.php
- mime_type_report_builder.php
- object_location_history_table.php
- object_status_history_table.php
- objectfs_report.php
- objectfs_report_builder.php
- tag_count_report_builder.php
- client.php
- file_system.php
- stream_wrapper.php
- client.php
- file_system.php
- client.php
- file_system.php
- admin_settings_aws_region.php
- client.php
- file_system.php
- client.php
- file_system.php
- stream_wrapper.php
- object_client.php
- object_client_base.php
- object_file_system.php
- signed_url.php
- files_table.php
- environment_source.php
- location_source.php
- tag_manager.php
- tag_source.php
- manager.php
- tag_sync_count_result.php
- aggregate_logger.php
- null_logger.php
- objectfs_logger.php
- objectfs_statistic.php
- real_time_logger.php
- provider.php
- check_objects_location.php
- delete_local_objects.php
- delete_orphaned_object_metadata.php
- generate_status_report.php
- objectfs_task.php
- orphan_objects.php
- populate_objects_filesize.php
- pull_objects_from_storage.php
- push_objects_to_storage.php
- reconcile_filedir.php
- recover_error_objects.php
- task.php
- trigger_update_object_tags.php
- update_object_tags.php
- test_azure_blob_storage_integration_client.php
- test_azure_integration_client.php
- test_client.php
- test_digitalocean_integration_client.php
- test_file_system.php
- test_s3_integration_client.php
- test_swift_integration_client.php
- testcase.php
- azure_blob_storage_file_system.php
- azure_file_system.php
- digitalocean_file_system.php
- s3_file_system.php
- swift_file_system.php
- caches.php
- install.xml
- tasks.php
- upgrade.php
- tool_objectfs.php
- core27.diff
- core31.diff
- core33.diff
- core38.diff
- catalyst-logo.png
- Microsoft-logo_rgb_c-gray.png
- tagging_migration_status_test.php
- tagging_sync_status_test.php
- test.txt
- testimage.png
- testlarge.pdf
- testrelativeurls.html
- testsmall.pdf
- testspreadsheet.ods
- teststyle.css
- testvideo.mp4
- testwriter.odt
- 😀.txt
- checker_test.php
- deleter_test.php
- orphaner_test.php
- puller_test.php
- pusher_test.php
- recoverer_test.php
- object_status_test.php
- clients_test.php
- manager_test.php
- tagging_test.php
- tasks_test.php
- privacy_test.php
- populate_objects_filesize_test.php
- task_reconcile_filedir_test.php
- trigger_update_object_tags_test.php
- update_object_tags_test.php
- object_file_system_test.php
- token_expiry_test.php
- .gitignore
- CLOUDFRONT.md
- lib.php
- MIGRATION.md
- missing_files.php
- object_location.php
- object_status.php
- phpunit.xml
- presignedurl_tests.php
- README.md
- renderer.php
- settings.php
- styles.css
- TAGGING.md
- TESTING.md
- thirdpartylibs.xml
- version.php
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
az login
설명 보기 ▼
az login
Log in to Azure.
Part of `azure-cli` (also known as `az`).
az login
Log in interactively:
az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{secret}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}
Log in with a service principal using a client secret:
az login --service-principal {{[-u|--username]}} {{http://azure-cli-service-principal}} {{[-p|--password]}} {{path/to/cert.pem}} {{[-t|--tenant]}} {{someone.onmicrosoft.com}}
Log in with a service principal using a client certificate:
az storage account
설명 보기 ▼
az storage account
Manage storage accounts in Azure.
Part of `azure-cli` (also known as `az`).
az storage account create {{[-n|--name]}} {{storage_account_name}} {{[-g|--resource-group]}} {{azure_resource_group}} --location {{azure_location}} --sku {{storage_account_sku}}
Create a storage account:
az storage account generate-sas --account-name {{storage_account_name}} {{[-n|--name]}} {{account_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --services {{storage_services}} --resource-types {{resource_types}}
Generate a shared access signature for a specific storage account:
az storage account list {{[-g|--resource-group]}} {{azure_resource_group}}
List storage accounts:
az storage container
설명 보기 ▼
az storage container
Manage blob storage containers in Azure.
Part of `azure-cli` (also known as `az`).
az storage container create --account-name {{storage_account_name}} {{[-n|--name]}} {{container_name}} --public-access {{access_level}} --fail-on-exist
Create a container in a storage account:
az storage container generate-sas --account-name {{storage_account_name}} {{[-n|--name]}} {{container_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --https-only
Generate a shared access signature for the container:
az storage container list --account-name {{storage_account_name}} --prefix {{filter_prefix}}
List containers in a storage account:
swift
설명 보기 ▼
swift
Swift 프로젝트를 생성, 실행 및 빌드.
더 많은 정보: <https://manned.org/swiftc>.
swift repl
REPL(대화형 셸) 시작:
swift {{file.swift}}
프로그램 실행:
swift package init
패키지 관리자로 새 프로젝트 시작:
