├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── check-format.yml │ ├── ci_node16.yaml │ ├── ci_with_docker_linux.yaml │ └── registry-publish.yaml ├── .gitignore ├── .markdownlint.json ├── .markdownlintignore ├── .prettierignore ├── .prettierrc.js ├── .signore ├── .stylelintignore ├── .stylelintrc.js ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ ├── complete-props.yaml ├── e2e │ ├── apt │ │ ├── code │ │ │ ├── .gitignore │ │ │ ├── apt-get.list │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── run │ │ └── s.yaml │ ├── ci-mac-linux.sh │ ├── ci-windows.ps1 │ ├── ci.sh │ ├── ci_trigger.sh │ ├── command-api │ │ ├── code │ │ │ └── event.js │ │ ├── pyyaml-layer.zip │ │ ├── run │ │ ├── run-windows.ps1 │ │ ├── run_cli_mode │ │ └── s.yaml │ ├── custom-container │ │ ├── code │ │ │ ├── Dockerfile │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── server.js │ │ ├── run │ │ └── s.yaml │ ├── custom-domain │ │ ├── code │ │ │ └── index.py │ │ ├── s.yaml │ │ └── s2.yaml │ ├── custom.debian10 │ │ ├── go │ │ │ ├── code │ │ │ │ ├── .gitignore │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── main.go │ │ │ └── s.yaml │ │ ├── python │ │ │ ├── code │ │ │ │ ├── .gitignore │ │ │ │ ├── gunicorn_conf.py │ │ │ │ ├── requirements.txt │ │ │ │ └── server.py │ │ │ └── s.yaml │ │ └── run │ ├── custom.debian11 │ │ ├── go │ │ │ ├── code │ │ │ │ ├── .gitignore │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── main.go │ │ │ └── s.yaml │ │ └── run │ ├── custom │ │ ├── go │ │ │ ├── code │ │ │ │ ├── .gitignore │ │ │ │ ├── go.mod │ │ │ │ └── main.go │ │ │ └── s.yaml │ │ ├── python │ │ │ ├── code │ │ │ │ ├── .gitignore │ │ │ │ ├── gunicorn_conf.py │ │ │ │ ├── requirements.txt │ │ │ │ └── server.py │ │ │ └── s.yaml │ │ ├── run │ │ ├── run-windows.ps1 │ │ └── springboot │ │ │ ├── code │ │ │ ├── .fcignore │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── webframework │ │ │ │ │ │ └── WebFrameworkApplication.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── webframework │ │ │ │ └── WebFrameworkApplicationTests.java │ │ │ ├── event │ │ │ └── http.json │ │ │ └── s.yaml │ ├── dotnetcore │ │ ├── HelloFcApp │ │ │ ├── HelloFcApp.csproj │ │ │ └── Program.cs │ │ ├── run │ │ └── s.yaml │ ├── go │ │ ├── code │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── main.go │ │ ├── run │ │ └── s.yaml │ ├── java │ │ ├── .gitignore │ │ ├── pom.xml │ │ ├── run │ │ ├── s.yaml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── example │ │ │ └── App.java │ ├── local │ │ ├── layer │ │ │ ├── nodejs │ │ │ │ ├── code │ │ │ │ │ └── index.js │ │ │ │ └── s.yaml │ │ │ └── python │ │ │ │ ├── code │ │ │ │ └── index.py │ │ │ │ └── s.yaml │ │ ├── nas │ │ │ ├── code │ │ │ │ └── index.py │ │ │ └── s.yaml │ │ └── run │ ├── model │ │ ├── deploy_and_test_model.py │ │ ├── requirements.txt │ │ ├── s.yaml │ │ ├── s_file.yaml │ │ └── test.py │ ├── nodejs │ │ ├── check-permissions-after-deploy.ps1 │ │ ├── check-permissions-before-deploy.ps1 │ │ ├── code │ │ │ ├── event.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── hello-code │ │ │ └── index.js │ │ ├── run │ │ ├── s.yaml │ │ ├── s2.yaml │ │ ├── s_auto.yaml │ │ ├── s_custom_endpoint.yaml │ │ ├── s_lock_auto.yaml │ │ ├── s_oss_config_auto.yaml │ │ ├── s_permission.yaml │ │ ├── s_provision_drain.yaml │ │ ├── s_tags.yaml │ │ ├── s_tags2.yaml │ │ ├── s_tags3.yaml │ │ ├── test-auto-code │ │ │ └── index.js │ │ ├── test-permission-code │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── test.sh │ ├── php │ │ ├── code │ │ │ ├── .gitignore │ │ │ ├── composer.json │ │ │ ├── composer.lock │ │ │ ├── index.php │ │ │ └── test.sh │ │ ├── run │ │ ├── run-windows.ps1 │ │ └── s.yaml │ ├── python │ │ ├── code │ │ │ ├── .gitignore │ │ │ ├── apt-get.list │ │ │ ├── index.py │ │ │ └── requirements.txt │ │ ├── run │ │ ├── run-windows.ps1 │ │ └── s.yaml │ ├── scaling │ │ ├── code │ │ │ └── index.js │ │ ├── run │ │ ├── s.yaml │ │ ├── s2.yaml │ │ └── s3.yaml │ ├── session │ │ ├── code │ │ │ └── index.js │ │ ├── run │ │ ├── run-windows.ps1 │ │ └── s.yaml │ └── trigger │ │ ├── clear │ │ ├── eb │ │ ├── code │ │ │ └── index.js │ │ └── s.yaml │ │ ├── http │ │ ├── code │ │ │ └── index.js │ │ ├── evt.json │ │ └── s.yaml │ │ ├── jwt │ │ ├── code │ │ │ └── index.js │ │ └── s.yaml │ │ ├── other │ │ ├── code │ │ │ └── index.js │ │ └── s.yaml │ │ ├── run │ │ └── run-windows.ps1 ├── format.sh ├── it │ ├── code │ │ └── index.py │ └── integration_test.ts └── ut │ ├── commands │ ├── alias_test.ts │ ├── artModelService_test.ts │ ├── build │ │ └── impl │ │ │ ├── baseBuilder_test.ts │ │ │ ├── baseImageBuilder_test.ts │ │ │ ├── imageBuiltKitBuilder_test.ts │ │ │ ├── imageDockerBuilder_test.ts │ │ │ └── imageKanikoBuilder_test.ts │ ├── build_test.ts │ ├── concurrency_test.ts │ ├── deploy │ │ ├── deploy_test.ts │ │ ├── impl │ │ │ ├── async_invoke_config_test.ts │ │ │ ├── concurrency_config_test.ts │ │ │ ├── custom_domain_test.ts │ │ │ ├── function_test.ts │ │ │ ├── provision_config_test.ts │ │ │ └── scaling_config_test.ts │ │ └── scaling_config_provision_config_validation_test.ts │ ├── instance_test.ts │ ├── invoke_test.ts │ ├── layer_test.ts │ ├── logs_test.ts │ ├── modelService_test.ts │ ├── model_test.ts │ ├── model_utils_test.ts │ ├── plan │ │ └── plan_test.ts │ ├── provision │ │ └── provision_test.ts │ ├── remove │ │ └── remove_test.ts │ ├── scaling │ │ └── index_test.ts │ ├── session_test.ts │ ├── subCommands_test.ts │ ├── sync_test.ts │ └── version_test.ts │ ├── core │ ├── base_test.ts │ ├── crc64_test.ts │ ├── downloadFile_test.ts │ ├── index_test.ts │ ├── interface_test.ts │ ├── transformCustomDomainProps_test.ts │ ├── verify_simple_test.ts │ └── verify_test.ts │ ├── local │ ├── impl │ │ ├── baseLocalInvoke_test.ts │ │ ├── baseLocalStart_test.ts │ │ ├── baseLocal_test.ts │ │ ├── customContainerLocalInvoke_test.ts │ │ ├── customLocalInvoke_test.ts │ │ ├── dotnetLocalInvoke_test.ts │ │ ├── javaLocalInvoke_test.ts │ │ ├── nodejsLocalInvoke_test.ts │ │ ├── nodejsLocalStart_test.ts │ │ ├── phpLocalInvoke_test.ts │ │ ├── pythonLocalInvoke_test.ts │ │ ├── pythonLocalStart_test.ts │ │ └── utils_test.ts │ └── local_test.ts │ ├── resources │ ├── fc │ │ ├── fc_client_test.ts │ │ ├── impl │ │ │ ├── client_test.ts │ │ │ ├── replace-function-config_test.ts │ │ │ ├── utils_permissions_test.ts │ │ │ └── utils_test.ts │ │ └── index_test.ts │ └── sls │ │ └── index_test.ts │ └── utils │ ├── utils_functions_test.ts │ └── utils_test.ts ├── commitlint.config.js ├── docs ├── architecture.md ├── project-summary.md ├── readme.md ├── technical-documentation.md └── testing-plan.md ├── f2elint.config.js ├── jestconfig.json ├── makefile ├── package.json ├── patches └── ali-oss+6.18.1.patch ├── publish.yaml ├── src ├── base.ts ├── commands-help │ ├── alias.ts │ ├── build.ts │ ├── concurrency.ts │ ├── deploy.ts │ ├── index.ts │ ├── info.ts │ ├── instance.ts │ ├── invoke.ts │ ├── layer.ts │ ├── local.ts │ ├── logs.ts │ ├── model.ts │ ├── plan.ts │ ├── provision.ts │ ├── remove.ts │ ├── s2tos3.ts │ ├── scaling.ts │ ├── session.ts │ ├── sync.ts │ └── version.ts ├── constant.ts ├── default │ ├── config.ts │ ├── image.ts │ └── resources.ts ├── index.ts ├── interface │ ├── async_invoke_config.ts │ ├── base.ts │ ├── cli-config │ │ ├── alias.ts │ │ ├── concurrency.ts │ │ ├── provision.ts │ │ └── scaling.ts │ ├── concurrency_config.ts │ ├── function.ts │ ├── index.ts │ ├── provison_config.ts │ ├── region.ts │ ├── scaling_config.ts │ └── trigger.ts ├── logger.ts ├── resources │ ├── acr │ │ ├── index.ts │ │ └── login.ts │ ├── fc │ │ ├── error-code.ts │ │ ├── impl │ │ │ ├── client.ts │ │ │ ├── replace-function-config.ts │ │ │ └── utils.ts │ │ └── index.ts │ ├── oss │ │ └── index.ts │ ├── ram │ │ └── index.ts │ ├── sls │ │ └── index.ts │ └── vpc-nas │ │ └── index.ts ├── schema.json ├── subCommands │ ├── 2to3 │ │ └── index.ts │ ├── alias │ │ └── index.ts │ ├── build │ │ ├── impl │ │ │ ├── baseBuilder.ts │ │ │ ├── baseImageBuilder.ts │ │ │ ├── defaultBuilder.ts │ │ │ ├── imageBuiltKitBuilder.ts │ │ │ ├── imageDockerBuilder.ts │ │ │ └── imageKanikoBuilder.ts │ │ └── index.ts │ ├── concurrency │ │ └── index.ts │ ├── deploy │ │ ├── impl │ │ │ ├── async_invoke_config.ts │ │ │ ├── base.ts │ │ │ ├── concurrency_config.ts │ │ │ ├── custom_domain.ts │ │ │ ├── function.ts │ │ │ ├── provision_config.ts │ │ │ ├── scaling_config.ts │ │ │ ├── trigger.ts │ │ │ └── vpc_binding.ts │ │ └── index.ts │ ├── info │ │ └── index.ts │ ├── instance │ │ └── index.ts │ ├── invoke │ │ └── index.ts │ ├── layer │ │ └── index.ts │ ├── local │ │ ├── impl │ │ │ ├── baseLocal.ts │ │ │ ├── invoke │ │ │ │ ├── baseLocalInvoke.ts │ │ │ │ ├── customContainerLocalInvoke.ts │ │ │ │ ├── customLocalInvoke.ts │ │ │ │ ├── dotnetLocalInvoke.ts │ │ │ │ ├── goLocalInvoke.ts │ │ │ │ ├── javaLocalInvoke.ts │ │ │ │ ├── nodejsLocalInvoke.ts │ │ │ │ ├── phpLocalInvoke.ts │ │ │ │ └── pythonLocalInvoke.ts │ │ │ ├── start │ │ │ │ ├── baseLocalStart.ts │ │ │ │ ├── customContainerLocalStart.ts │ │ │ │ ├── customLocalStart.ts │ │ │ │ ├── dotnetLocalStart.ts │ │ │ │ ├── goLocalInvoke.ts │ │ │ │ ├── javaLocalStart.ts │ │ │ │ ├── nodejsLocalStart.ts │ │ │ │ ├── phpLocalStart.ts │ │ │ │ └── pythonLocalStart.ts │ │ │ └── utils.ts │ │ └── index.ts │ ├── logs │ │ ├── constant.ts │ │ └── index.ts │ ├── model │ │ ├── constants.ts │ │ ├── fileManager.ts │ │ ├── index.ts │ │ ├── model.ts │ │ └── utils │ │ │ └── index.ts │ ├── plan │ │ └── index.ts │ ├── provision │ │ └── index.ts │ ├── remove │ │ └── index.ts │ ├── scaling │ │ └── index.ts │ ├── session │ │ └── index.ts │ ├── sync │ │ └── index.ts │ ├── trigger-template │ │ ├── event-template │ │ │ ├── cdn-CachedObjectsRefreshed.json │ │ │ ├── cdn-CdnDomainAdded.json │ │ │ ├── cdn-CdnDomainStarted.json │ │ │ ├── cdn-LogFileCreated.json │ │ │ ├── http.json │ │ │ ├── mns-stream.json │ │ │ ├── mns-with-MessageAttributes.json │ │ │ ├── mns-without-MessageAttributes.json │ │ │ ├── oss.json │ │ │ ├── sls.json │ │ │ └── tablestore.json │ │ └── index.ts │ └── version │ │ └── index.ts └── utils │ ├── index.ts │ ├── run-command.ts │ └── verify.ts ├── tsconfig.json └── version.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/check-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.github/workflows/check-format.yml -------------------------------------------------------------------------------- /.github/workflows/ci_node16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.github/workflows/ci_node16.yaml -------------------------------------------------------------------------------- /.github/workflows/ci_with_docker_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.github/workflows/ci_with_docker_linux.yaml -------------------------------------------------------------------------------- /.github/workflows/registry-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.github/workflows/registry-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "markdownlint-config-ali" 3 | } 4 | -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.markdownlintignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.signore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.signore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'stylelint-config-ali', 3 | }; 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/complete-props.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/complete-props.yaml -------------------------------------------------------------------------------- /__tests__/e2e/apt/code/.gitignore: -------------------------------------------------------------------------------- 1 | apt-archives -------------------------------------------------------------------------------- /__tests__/e2e/apt/code/apt-get.list: -------------------------------------------------------------------------------- 1 | libjq1 2 | libonig4 3 | jq 4 | rsync 5 | -------------------------------------------------------------------------------- /__tests__/e2e/apt/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/apt/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/apt/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/apt/code/package.json -------------------------------------------------------------------------------- /__tests__/e2e/apt/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/apt/run -------------------------------------------------------------------------------- /__tests__/e2e/apt/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/apt/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/ci-mac-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/ci-mac-linux.sh -------------------------------------------------------------------------------- /__tests__/e2e/ci-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/ci-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/ci.sh -------------------------------------------------------------------------------- /__tests__/e2e/ci_trigger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/ci_trigger.sh -------------------------------------------------------------------------------- /__tests__/e2e/command-api/code/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/code/event.js -------------------------------------------------------------------------------- /__tests__/e2e/command-api/pyyaml-layer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/pyyaml-layer.zip -------------------------------------------------------------------------------- /__tests__/e2e/command-api/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/run -------------------------------------------------------------------------------- /__tests__/e2e/command-api/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/command-api/run_cli_mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/run_cli_mode -------------------------------------------------------------------------------- /__tests__/e2e/command-api/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/command-api/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/code/Dockerfile -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/code/package-lock.json -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/code/package.json -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/code/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/code/server.js -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/run -------------------------------------------------------------------------------- /__tests__/e2e/custom-container/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-container/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom-domain/code/index.py: -------------------------------------------------------------------------------- 1 | def handler(event, context): 2 | return "hello wolrd!\n" 3 | -------------------------------------------------------------------------------- /__tests__/e2e/custom-domain/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-domain/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom-domain/s2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom-domain/s2.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/go/code/.gitignore: -------------------------------------------------------------------------------- 1 | python 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/go/code/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/go/code/go.mod -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/go/code/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/go/code/go.sum -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/go/code/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/go/code/main.go -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/go/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/go/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/python/code/.gitignore: -------------------------------------------------------------------------------- 1 | python 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/python/code/gunicorn_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/python/code/gunicorn_conf.py -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/python/code/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | flask -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/python/code/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/python/code/server.py -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/python/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/python/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian10/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian10/run -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/go/code/.gitignore: -------------------------------------------------------------------------------- 1 | python 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/go/code/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian11/go/code/go.mod -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/go/code/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian11/go/code/go.sum -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/go/code/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian11/go/code/main.go -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/go/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian11/go/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom.debian11/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom.debian11/run -------------------------------------------------------------------------------- /__tests__/e2e/custom/go/code/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | go.sum -------------------------------------------------------------------------------- /__tests__/e2e/custom/go/code/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/go/code/go.mod -------------------------------------------------------------------------------- /__tests__/e2e/custom/go/code/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/go/code/main.go -------------------------------------------------------------------------------- /__tests__/e2e/custom/go/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/go/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom/python/code/.gitignore: -------------------------------------------------------------------------------- 1 | python 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /__tests__/e2e/custom/python/code/gunicorn_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/python/code/gunicorn_conf.py -------------------------------------------------------------------------------- /__tests__/e2e/custom/python/code/requirements.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | flask -------------------------------------------------------------------------------- /__tests__/e2e/custom/python/code/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/python/code/server.py -------------------------------------------------------------------------------- /__tests__/e2e/custom/python/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/python/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/custom/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/run -------------------------------------------------------------------------------- /__tests__/e2e/custom/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/.fcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/.fcignore -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/Dockerfile -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/mvnw -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/mvnw.cmd -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/pom.xml -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/src/main/java/com/example/webframework/WebFrameworkApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/src/main/java/com/example/webframework/WebFrameworkApplication.java -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/src/main/resources/application.properties -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/code/src/test/java/com/example/webframework/WebFrameworkApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/code/src/test/java/com/example/webframework/WebFrameworkApplicationTests.java -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/event/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/event/http.json -------------------------------------------------------------------------------- /__tests__/e2e/custom/springboot/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/custom/springboot/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/dotnetcore/HelloFcApp/HelloFcApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/dotnetcore/HelloFcApp/HelloFcApp.csproj -------------------------------------------------------------------------------- /__tests__/e2e/dotnetcore/HelloFcApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/dotnetcore/HelloFcApp/Program.cs -------------------------------------------------------------------------------- /__tests__/e2e/dotnetcore/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/dotnetcore/run -------------------------------------------------------------------------------- /__tests__/e2e/dotnetcore/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/dotnetcore/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/go/code/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/go/code/go.mod -------------------------------------------------------------------------------- /__tests__/e2e/go/code/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/go/code/go.sum -------------------------------------------------------------------------------- /__tests__/e2e/go/code/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/go/code/main.go -------------------------------------------------------------------------------- /__tests__/e2e/go/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/go/run -------------------------------------------------------------------------------- /__tests__/e2e/go/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/go/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/java/.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /__tests__/e2e/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/java/pom.xml -------------------------------------------------------------------------------- /__tests__/e2e/java/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/java/run -------------------------------------------------------------------------------- /__tests__/e2e/java/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/java/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/java/src/main/java/example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/java/src/main/java/example/App.java -------------------------------------------------------------------------------- /__tests__/e2e/local/layer/nodejs/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/layer/nodejs/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/local/layer/nodejs/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/layer/nodejs/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/local/layer/python/code/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/layer/python/code/index.py -------------------------------------------------------------------------------- /__tests__/e2e/local/layer/python/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/layer/python/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/local/nas/code/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/nas/code/index.py -------------------------------------------------------------------------------- /__tests__/e2e/local/nas/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/nas/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/local/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/local/run -------------------------------------------------------------------------------- /__tests__/e2e/model/deploy_and_test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/model/deploy_and_test_model.py -------------------------------------------------------------------------------- /__tests__/e2e/model/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.32.3 2 | PyYAML==6.0.1 -------------------------------------------------------------------------------- /__tests__/e2e/model/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/model/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/model/s_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/model/s_file.yaml -------------------------------------------------------------------------------- /__tests__/e2e/model/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/model/test.py -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/check-permissions-after-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/check-permissions-after-deploy.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/check-permissions-before-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/check-permissions-before-deploy.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/code/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/code/event.js -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/code/package-lock.json -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/code/package.json -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/hello-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/hello-code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/run -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s2.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_auto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_auto.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_custom_endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_custom_endpoint.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_lock_auto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_lock_auto.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_oss_config_auto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_oss_config_auto.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_permission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_permission.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_provision_drain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_provision_drain.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_tags.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_tags2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_tags2.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/s_tags3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/s_tags3.yaml -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/test-auto-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/test-auto-code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/test-permission-code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/test-permission-code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/test-permission-code/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/test-permission-code/package-lock.json -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/test-permission-code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/test-permission-code/package.json -------------------------------------------------------------------------------- /__tests__/e2e/nodejs/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/nodejs/test.sh -------------------------------------------------------------------------------- /__tests__/e2e/php/code/.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /__tests__/e2e/php/code/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/code/composer.json -------------------------------------------------------------------------------- /__tests__/e2e/php/code/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/code/composer.lock -------------------------------------------------------------------------------- /__tests__/e2e/php/code/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/code/index.php -------------------------------------------------------------------------------- /__tests__/e2e/php/code/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/code/test.sh -------------------------------------------------------------------------------- /__tests__/e2e/php/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/run -------------------------------------------------------------------------------- /__tests__/e2e/php/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/php/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/php/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/python/code/.gitignore: -------------------------------------------------------------------------------- 1 | python 2 | __pycache__ 3 | index.pyc 4 | -------------------------------------------------------------------------------- /__tests__/e2e/python/code/apt-get.list: -------------------------------------------------------------------------------- 1 | jq 2 | git -------------------------------------------------------------------------------- /__tests__/e2e/python/code/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/python/code/index.py -------------------------------------------------------------------------------- /__tests__/e2e/python/code/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | flask -------------------------------------------------------------------------------- /__tests__/e2e/python/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/python/run -------------------------------------------------------------------------------- /__tests__/e2e/python/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/python/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/python/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/python/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/scaling/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/scaling/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/scaling/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/scaling/run -------------------------------------------------------------------------------- /__tests__/e2e/scaling/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/scaling/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/scaling/s2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/scaling/s2.yaml -------------------------------------------------------------------------------- /__tests__/e2e/scaling/s3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/scaling/s3.yaml -------------------------------------------------------------------------------- /__tests__/e2e/session/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/session/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/session/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/session/run -------------------------------------------------------------------------------- /__tests__/e2e/session/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/session/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/e2e/session/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/session/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/trigger/clear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/clear -------------------------------------------------------------------------------- /__tests__/e2e/trigger/eb/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/eb/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/trigger/eb/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/eb/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/trigger/http/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/http/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/trigger/http/evt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/http/evt.json -------------------------------------------------------------------------------- /__tests__/e2e/trigger/http/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/http/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/trigger/jwt/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/jwt/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/trigger/jwt/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/jwt/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/trigger/other/code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/other/code/index.js -------------------------------------------------------------------------------- /__tests__/e2e/trigger/other/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/other/s.yaml -------------------------------------------------------------------------------- /__tests__/e2e/trigger/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/run -------------------------------------------------------------------------------- /__tests__/e2e/trigger/run-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/e2e/trigger/run-windows.ps1 -------------------------------------------------------------------------------- /__tests__/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/format.sh -------------------------------------------------------------------------------- /__tests__/it/code/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/it/code/index.py -------------------------------------------------------------------------------- /__tests__/it/integration_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/it/integration_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/alias_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/alias_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/artModelService_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/artModelService_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build/impl/baseBuilder_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build/impl/baseBuilder_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build/impl/baseImageBuilder_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build/impl/baseImageBuilder_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build/impl/imageBuiltKitBuilder_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build/impl/imageBuiltKitBuilder_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build/impl/imageDockerBuilder_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build/impl/imageDockerBuilder_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build/impl/imageKanikoBuilder_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build/impl/imageKanikoBuilder_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/build_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/build_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/concurrency_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/concurrency_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/deploy_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/deploy_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/async_invoke_config_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/async_invoke_config_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/concurrency_config_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/concurrency_config_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/custom_domain_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/custom_domain_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/function_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/function_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/provision_config_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/provision_config_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/impl/scaling_config_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/impl/scaling_config_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/deploy/scaling_config_provision_config_validation_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/deploy/scaling_config_provision_config_validation_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/instance_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/instance_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/invoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/invoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/layer_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/layer_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/logs_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/logs_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/modelService_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/modelService_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/model_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/model_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/model_utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/model_utils_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/plan/plan_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/plan/plan_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/provision/provision_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/provision/provision_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/remove/remove_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/remove/remove_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/scaling/index_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/scaling/index_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/session_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/session_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/subCommands_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/subCommands_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/sync_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/sync_test.ts -------------------------------------------------------------------------------- /__tests__/ut/commands/version_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/commands/version_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/base_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/base_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/crc64_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/crc64_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/downloadFile_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/downloadFile_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/index_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/index_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/interface_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/interface_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/transformCustomDomainProps_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/transformCustomDomainProps_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/verify_simple_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/verify_simple_test.ts -------------------------------------------------------------------------------- /__tests__/ut/core/verify_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/core/verify_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/baseLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/baseLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/baseLocalStart_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/baseLocalStart_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/baseLocal_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/baseLocal_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/customContainerLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/customContainerLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/customLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/customLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/dotnetLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/dotnetLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/javaLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/javaLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/nodejsLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/nodejsLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/nodejsLocalStart_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/nodejsLocalStart_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/phpLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/phpLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/pythonLocalInvoke_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/pythonLocalInvoke_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/pythonLocalStart_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/pythonLocalStart_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/impl/utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/impl/utils_test.ts -------------------------------------------------------------------------------- /__tests__/ut/local/local_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/local/local_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/fc_client_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/fc_client_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/impl/client_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/impl/client_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/impl/replace-function-config_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/impl/replace-function-config_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/impl/utils_permissions_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/impl/utils_permissions_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/impl/utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/impl/utils_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/fc/index_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/fc/index_test.ts -------------------------------------------------------------------------------- /__tests__/ut/resources/sls/index_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/resources/sls/index_test.ts -------------------------------------------------------------------------------- /__tests__/ut/utils/utils_functions_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/utils/utils_functions_test.ts -------------------------------------------------------------------------------- /__tests__/ut/utils/utils_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/__tests__/ut/utils/utils_test.ts -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['ali'], 3 | }; 4 | -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/project-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/docs/project-summary.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/technical-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/docs/technical-documentation.md -------------------------------------------------------------------------------- /docs/testing-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/docs/testing-plan.md -------------------------------------------------------------------------------- /f2elint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/f2elint.config.js -------------------------------------------------------------------------------- /jestconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/jestconfig.json -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/makefile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/package.json -------------------------------------------------------------------------------- /patches/ali-oss+6.18.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/patches/ali-oss+6.18.1.patch -------------------------------------------------------------------------------- /publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/publish.yaml -------------------------------------------------------------------------------- /src/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/base.ts -------------------------------------------------------------------------------- /src/commands-help/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/alias.ts -------------------------------------------------------------------------------- /src/commands-help/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/build.ts -------------------------------------------------------------------------------- /src/commands-help/concurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/concurrency.ts -------------------------------------------------------------------------------- /src/commands-help/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/deploy.ts -------------------------------------------------------------------------------- /src/commands-help/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/index.ts -------------------------------------------------------------------------------- /src/commands-help/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/info.ts -------------------------------------------------------------------------------- /src/commands-help/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/instance.ts -------------------------------------------------------------------------------- /src/commands-help/invoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/invoke.ts -------------------------------------------------------------------------------- /src/commands-help/layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/layer.ts -------------------------------------------------------------------------------- /src/commands-help/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/local.ts -------------------------------------------------------------------------------- /src/commands-help/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/logs.ts -------------------------------------------------------------------------------- /src/commands-help/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/model.ts -------------------------------------------------------------------------------- /src/commands-help/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/plan.ts -------------------------------------------------------------------------------- /src/commands-help/provision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/provision.ts -------------------------------------------------------------------------------- /src/commands-help/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/remove.ts -------------------------------------------------------------------------------- /src/commands-help/s2tos3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/s2tos3.ts -------------------------------------------------------------------------------- /src/commands-help/scaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/scaling.ts -------------------------------------------------------------------------------- /src/commands-help/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/session.ts -------------------------------------------------------------------------------- /src/commands-help/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/sync.ts -------------------------------------------------------------------------------- /src/commands-help/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/commands-help/version.ts -------------------------------------------------------------------------------- /src/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/constant.ts -------------------------------------------------------------------------------- /src/default/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/default/config.ts -------------------------------------------------------------------------------- /src/default/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/default/image.ts -------------------------------------------------------------------------------- /src/default/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/default/resources.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface/async_invoke_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/async_invoke_config.ts -------------------------------------------------------------------------------- /src/interface/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/base.ts -------------------------------------------------------------------------------- /src/interface/cli-config/alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/cli-config/alias.ts -------------------------------------------------------------------------------- /src/interface/cli-config/concurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/cli-config/concurrency.ts -------------------------------------------------------------------------------- /src/interface/cli-config/provision.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/cli-config/provision.ts -------------------------------------------------------------------------------- /src/interface/cli-config/scaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/cli-config/scaling.ts -------------------------------------------------------------------------------- /src/interface/concurrency_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/concurrency_config.ts -------------------------------------------------------------------------------- /src/interface/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/function.ts -------------------------------------------------------------------------------- /src/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/index.ts -------------------------------------------------------------------------------- /src/interface/provison_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/provison_config.ts -------------------------------------------------------------------------------- /src/interface/region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/region.ts -------------------------------------------------------------------------------- /src/interface/scaling_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/scaling_config.ts -------------------------------------------------------------------------------- /src/interface/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/interface/trigger.ts -------------------------------------------------------------------------------- /src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/logger.ts -------------------------------------------------------------------------------- /src/resources/acr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/acr/index.ts -------------------------------------------------------------------------------- /src/resources/acr/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/acr/login.ts -------------------------------------------------------------------------------- /src/resources/fc/error-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/fc/error-code.ts -------------------------------------------------------------------------------- /src/resources/fc/impl/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/fc/impl/client.ts -------------------------------------------------------------------------------- /src/resources/fc/impl/replace-function-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/fc/impl/replace-function-config.ts -------------------------------------------------------------------------------- /src/resources/fc/impl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/fc/impl/utils.ts -------------------------------------------------------------------------------- /src/resources/fc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/fc/index.ts -------------------------------------------------------------------------------- /src/resources/oss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/oss/index.ts -------------------------------------------------------------------------------- /src/resources/ram/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/ram/index.ts -------------------------------------------------------------------------------- /src/resources/sls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/sls/index.ts -------------------------------------------------------------------------------- /src/resources/vpc-nas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/resources/vpc-nas/index.ts -------------------------------------------------------------------------------- /src/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/schema.json -------------------------------------------------------------------------------- /src/subCommands/2to3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/2to3/index.ts -------------------------------------------------------------------------------- /src/subCommands/alias/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/alias/index.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/baseBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/baseBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/baseImageBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/baseImageBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/defaultBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/defaultBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/imageBuiltKitBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/imageBuiltKitBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/imageDockerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/imageDockerBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/impl/imageKanikoBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/impl/imageKanikoBuilder.ts -------------------------------------------------------------------------------- /src/subCommands/build/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/build/index.ts -------------------------------------------------------------------------------- /src/subCommands/concurrency/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/concurrency/index.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/async_invoke_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/async_invoke_config.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/base.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/concurrency_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/concurrency_config.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/custom_domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/custom_domain.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/function.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/provision_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/provision_config.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/scaling_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/scaling_config.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/trigger.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/impl/vpc_binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/impl/vpc_binding.ts -------------------------------------------------------------------------------- /src/subCommands/deploy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/deploy/index.ts -------------------------------------------------------------------------------- /src/subCommands/info/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/info/index.ts -------------------------------------------------------------------------------- /src/subCommands/instance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/instance/index.ts -------------------------------------------------------------------------------- /src/subCommands/invoke/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/invoke/index.ts -------------------------------------------------------------------------------- /src/subCommands/layer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/layer/index.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/baseLocal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/baseLocal.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/baseLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/baseLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/customContainerLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/customContainerLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/customLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/customLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/dotnetLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/dotnetLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/goLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/goLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/javaLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/javaLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/nodejsLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/nodejsLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/phpLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/phpLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/invoke/pythonLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/invoke/pythonLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/baseLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/baseLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/customContainerLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/customContainerLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/customLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/customLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/dotnetLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/dotnetLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/goLocalInvoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/goLocalInvoke.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/javaLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/javaLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/nodejsLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/nodejsLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/phpLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/phpLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/start/pythonLocalStart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/start/pythonLocalStart.ts -------------------------------------------------------------------------------- /src/subCommands/local/impl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/impl/utils.ts -------------------------------------------------------------------------------- /src/subCommands/local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/local/index.ts -------------------------------------------------------------------------------- /src/subCommands/logs/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/logs/constant.ts -------------------------------------------------------------------------------- /src/subCommands/logs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/logs/index.ts -------------------------------------------------------------------------------- /src/subCommands/model/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/model/constants.ts -------------------------------------------------------------------------------- /src/subCommands/model/fileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/model/fileManager.ts -------------------------------------------------------------------------------- /src/subCommands/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/model/index.ts -------------------------------------------------------------------------------- /src/subCommands/model/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/model/model.ts -------------------------------------------------------------------------------- /src/subCommands/model/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/model/utils/index.ts -------------------------------------------------------------------------------- /src/subCommands/plan/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/plan/index.ts -------------------------------------------------------------------------------- /src/subCommands/provision/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/provision/index.ts -------------------------------------------------------------------------------- /src/subCommands/remove/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/remove/index.ts -------------------------------------------------------------------------------- /src/subCommands/scaling/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/scaling/index.ts -------------------------------------------------------------------------------- /src/subCommands/session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/session/index.ts -------------------------------------------------------------------------------- /src/subCommands/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/sync/index.ts -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/cdn-CachedObjectsRefreshed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/cdn-CachedObjectsRefreshed.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/cdn-CdnDomainAdded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/cdn-CdnDomainAdded.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/cdn-CdnDomainStarted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/cdn-CdnDomainStarted.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/cdn-LogFileCreated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/cdn-LogFileCreated.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/http.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/mns-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/mns-stream.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/mns-with-MessageAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/mns-with-MessageAttributes.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/mns-without-MessageAttributes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/mns-without-MessageAttributes.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/oss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/oss.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/sls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/sls.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/event-template/tablestore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/event-template/tablestore.json -------------------------------------------------------------------------------- /src/subCommands/trigger-template/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/trigger-template/index.ts -------------------------------------------------------------------------------- /src/subCommands/version/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/subCommands/version/index.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/run-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/utils/run-command.ts -------------------------------------------------------------------------------- /src/utils/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/src/utils/verify.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devsapp/fc3/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version.md: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------