├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-improvements.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── node.js.yml │ └── npm-publish.yml ├── .gitignore ├── README.md ├── docs └── samp-local-dotnet.md ├── images ├── demo-console.gif ├── demo-gpt.gif ├── demo-local.gif ├── demo-trace.gif ├── demo.gif ├── demo2.gif ├── demo3.gif ├── import-example.gif ├── init.gif ├── policy-demo.gif ├── rider-dotnet-build-task-config.png ├── rider-dotnet-debug-config.png ├── samp-local-swimlanes.png ├── share-modify-properties.gif ├── share-select-components.png └── share-select-dynamic-value.png ├── index.js ├── package.json ├── resources ├── cfn-resource-specification.json ├── sam-refs.json └── sam-resource-specification.json └── src ├── commands ├── configure │ ├── configure.js │ └── index.js ├── console │ ├── console.js │ └── index.js ├── convert-toml │ ├── convertToml.js │ └── index.js ├── describe │ ├── describe.js │ └── index.js ├── explore │ ├── explore.js │ └── index.js ├── generate │ ├── generate.js │ └── index.js ├── import │ ├── import.js │ ├── index.js │ ├── transformer.js │ └── transformer.test.js ├── init │ ├── index.js │ └── init.js ├── invoke │ ├── index.js │ ├── invoke.js │ ├── lambdaInvoker.js │ └── stepFunctionsInvoker.js ├── local │ ├── index.js │ ├── lib │ │ ├── AmazonRootCA1.pem │ │ ├── cleanup.js │ │ ├── connect.js │ │ ├── event-router.js │ │ ├── handler-finder.js │ │ ├── index.js │ │ ├── package.json │ │ └── relay │ │ │ ├── AmazonRootCA1.pem │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── relay.js │ ├── local.js │ ├── runner.js │ └── runtime-support │ │ ├── dotnet │ │ ├── .gitignore │ │ ├── LambdaContext.cs │ │ ├── Program.cs │ │ ├── dotnet.csproj │ │ ├── iac-support │ │ │ └── sam.js │ │ └── ide-support │ │ │ ├── jetbrains │ │ │ ├── config.xml │ │ │ └── setup.js │ │ │ ├── visualstudio │ │ │ └── setup.js │ │ │ └── vscode │ │ │ ├── launch.json │ │ │ └── setup.js │ │ ├── nodejs │ │ ├── cdk │ │ │ ├── cdk-construct-finder.js │ │ │ └── cdk-wrapper.js │ │ └── ide-support │ │ │ ├── jetbrains │ │ │ ├── config.xml │ │ │ └── setup.js │ │ │ └── vscode │ │ │ ├── launch.json │ │ │ ├── setup.js │ │ │ └── tasks.json │ │ └── python │ │ ├── cdk │ │ ├── cdk-construct-finder.js │ │ └── cdk-wrapper.js │ │ ├── common │ │ └── process-runner.js │ │ ├── entrypoint.py │ │ ├── iac-support │ │ ├── cdk.js │ │ └── sam.js │ │ └── ide-support │ │ ├── jetbrains │ │ ├── config.xml │ │ └── setup.js │ │ └── vscode │ │ ├── launch.json │ │ └── setup.js ├── policy │ └── index.js ├── powertools │ ├── index.js │ └── powertools.js ├── return-values │ ├── index.js │ └── return-values.js ├── share │ ├── index.js │ ├── share.js │ └── share.test.js ├── source │ ├── index.js │ └── source.js ├── stepfunctions │ ├── index.js │ └── test-state.js └── traces │ └── index.js └── shared ├── baseFile.json ├── fileFinder.js ├── githubUtil.js ├── inputUtil.js ├── lambdaHandlerParser.js ├── lambdaHandlerParser.test.js ├── parser.js ├── runtime-env-finder.js ├── runtimes.json ├── samConfigParser.js ├── settingsUtil.js └── templateAnatomy.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-improvements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/ISSUE_TEMPLATE/documentation-improvements.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/README.md -------------------------------------------------------------------------------- /docs/samp-local-dotnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/docs/samp-local-dotnet.md -------------------------------------------------------------------------------- /images/demo-console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo-console.gif -------------------------------------------------------------------------------- /images/demo-gpt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo-gpt.gif -------------------------------------------------------------------------------- /images/demo-local.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo-local.gif -------------------------------------------------------------------------------- /images/demo-trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo-trace.gif -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/demo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo2.gif -------------------------------------------------------------------------------- /images/demo3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/demo3.gif -------------------------------------------------------------------------------- /images/import-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/import-example.gif -------------------------------------------------------------------------------- /images/init.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/init.gif -------------------------------------------------------------------------------- /images/policy-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/policy-demo.gif -------------------------------------------------------------------------------- /images/rider-dotnet-build-task-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/rider-dotnet-build-task-config.png -------------------------------------------------------------------------------- /images/rider-dotnet-debug-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/rider-dotnet-debug-config.png -------------------------------------------------------------------------------- /images/samp-local-swimlanes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/samp-local-swimlanes.png -------------------------------------------------------------------------------- /images/share-modify-properties.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/share-modify-properties.gif -------------------------------------------------------------------------------- /images/share-select-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/share-select-components.png -------------------------------------------------------------------------------- /images/share-select-dynamic-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/images/share-select-dynamic-value.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/package.json -------------------------------------------------------------------------------- /resources/cfn-resource-specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/resources/cfn-resource-specification.json -------------------------------------------------------------------------------- /resources/sam-refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/resources/sam-refs.json -------------------------------------------------------------------------------- /resources/sam-resource-specification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/resources/sam-resource-specification.json -------------------------------------------------------------------------------- /src/commands/configure/configure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/configure/configure.js -------------------------------------------------------------------------------- /src/commands/configure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/configure/index.js -------------------------------------------------------------------------------- /src/commands/console/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/console/console.js -------------------------------------------------------------------------------- /src/commands/console/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/console/index.js -------------------------------------------------------------------------------- /src/commands/convert-toml/convertToml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/convert-toml/convertToml.js -------------------------------------------------------------------------------- /src/commands/convert-toml/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/convert-toml/index.js -------------------------------------------------------------------------------- /src/commands/describe/describe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/describe/describe.js -------------------------------------------------------------------------------- /src/commands/describe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/describe/index.js -------------------------------------------------------------------------------- /src/commands/explore/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/explore/explore.js -------------------------------------------------------------------------------- /src/commands/explore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/explore/index.js -------------------------------------------------------------------------------- /src/commands/generate/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/generate/generate.js -------------------------------------------------------------------------------- /src/commands/generate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/generate/index.js -------------------------------------------------------------------------------- /src/commands/import/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/import/import.js -------------------------------------------------------------------------------- /src/commands/import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/import/index.js -------------------------------------------------------------------------------- /src/commands/import/transformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/import/transformer.js -------------------------------------------------------------------------------- /src/commands/import/transformer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/import/transformer.test.js -------------------------------------------------------------------------------- /src/commands/init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/init/index.js -------------------------------------------------------------------------------- /src/commands/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/init/init.js -------------------------------------------------------------------------------- /src/commands/invoke/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/invoke/index.js -------------------------------------------------------------------------------- /src/commands/invoke/invoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/invoke/invoke.js -------------------------------------------------------------------------------- /src/commands/invoke/lambdaInvoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/invoke/lambdaInvoker.js -------------------------------------------------------------------------------- /src/commands/invoke/stepFunctionsInvoker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/invoke/stepFunctionsInvoker.js -------------------------------------------------------------------------------- /src/commands/local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/index.js -------------------------------------------------------------------------------- /src/commands/local/lib/AmazonRootCA1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/AmazonRootCA1.pem -------------------------------------------------------------------------------- /src/commands/local/lib/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/cleanup.js -------------------------------------------------------------------------------- /src/commands/local/lib/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/connect.js -------------------------------------------------------------------------------- /src/commands/local/lib/event-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/event-router.js -------------------------------------------------------------------------------- /src/commands/local/lib/handler-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/handler-finder.js -------------------------------------------------------------------------------- /src/commands/local/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/index.js -------------------------------------------------------------------------------- /src/commands/local/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/package.json -------------------------------------------------------------------------------- /src/commands/local/lib/relay/AmazonRootCA1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/relay/AmazonRootCA1.pem -------------------------------------------------------------------------------- /src/commands/local/lib/relay/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/relay/package-lock.json -------------------------------------------------------------------------------- /src/commands/local/lib/relay/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/relay/package.json -------------------------------------------------------------------------------- /src/commands/local/lib/relay/relay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/lib/relay/relay.js -------------------------------------------------------------------------------- /src/commands/local/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/local.js -------------------------------------------------------------------------------- /src/commands/local/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runner.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | bin 3 | obj -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/LambdaContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/LambdaContext.cs -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/Program.cs -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/dotnet.csproj -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/iac-support/sam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/iac-support/sam.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/ide-support/jetbrains/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/ide-support/jetbrains/config.xml -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/ide-support/jetbrains/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/ide-support/jetbrains/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/ide-support/visualstudio/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/ide-support/visualstudio/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/ide-support/vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/ide-support/vscode/launch.json -------------------------------------------------------------------------------- /src/commands/local/runtime-support/dotnet/ide-support/vscode/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/dotnet/ide-support/vscode/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/cdk/cdk-construct-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/cdk/cdk-construct-finder.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/cdk/cdk-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/cdk/cdk-wrapper.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/ide-support/jetbrains/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/ide-support/jetbrains/config.xml -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/ide-support/jetbrains/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/ide-support/jetbrains/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/ide-support/vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/ide-support/vscode/launch.json -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/ide-support/vscode/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/ide-support/vscode/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/nodejs/ide-support/vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/nodejs/ide-support/vscode/tasks.json -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/cdk/cdk-construct-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/cdk/cdk-construct-finder.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/cdk/cdk-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/cdk/cdk-wrapper.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/common/process-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/common/process-runner.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/entrypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/entrypoint.py -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/iac-support/cdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/iac-support/cdk.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/iac-support/sam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/iac-support/sam.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/ide-support/jetbrains/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/ide-support/jetbrains/config.xml -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/ide-support/jetbrains/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/ide-support/jetbrains/setup.js -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/ide-support/vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/ide-support/vscode/launch.json -------------------------------------------------------------------------------- /src/commands/local/runtime-support/python/ide-support/vscode/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/local/runtime-support/python/ide-support/vscode/setup.js -------------------------------------------------------------------------------- /src/commands/policy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/policy/index.js -------------------------------------------------------------------------------- /src/commands/powertools/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/powertools/index.js -------------------------------------------------------------------------------- /src/commands/powertools/powertools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/powertools/powertools.js -------------------------------------------------------------------------------- /src/commands/return-values/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/return-values/index.js -------------------------------------------------------------------------------- /src/commands/return-values/return-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/return-values/return-values.js -------------------------------------------------------------------------------- /src/commands/share/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/share/index.js -------------------------------------------------------------------------------- /src/commands/share/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/share/share.js -------------------------------------------------------------------------------- /src/commands/share/share.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/share/share.test.js -------------------------------------------------------------------------------- /src/commands/source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/source/index.js -------------------------------------------------------------------------------- /src/commands/source/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/source/source.js -------------------------------------------------------------------------------- /src/commands/stepfunctions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/stepfunctions/index.js -------------------------------------------------------------------------------- /src/commands/stepfunctions/test-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/stepfunctions/test-state.js -------------------------------------------------------------------------------- /src/commands/traces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/commands/traces/index.js -------------------------------------------------------------------------------- /src/shared/baseFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/baseFile.json -------------------------------------------------------------------------------- /src/shared/fileFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/fileFinder.js -------------------------------------------------------------------------------- /src/shared/githubUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/githubUtil.js -------------------------------------------------------------------------------- /src/shared/inputUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/inputUtil.js -------------------------------------------------------------------------------- /src/shared/lambdaHandlerParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/lambdaHandlerParser.js -------------------------------------------------------------------------------- /src/shared/lambdaHandlerParser.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/lambdaHandlerParser.test.js -------------------------------------------------------------------------------- /src/shared/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/parser.js -------------------------------------------------------------------------------- /src/shared/runtime-env-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/runtime-env-finder.js -------------------------------------------------------------------------------- /src/shared/runtimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/runtimes.json -------------------------------------------------------------------------------- /src/shared/samConfigParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/samConfigParser.js -------------------------------------------------------------------------------- /src/shared/settingsUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/settingsUtil.js -------------------------------------------------------------------------------- /src/shared/templateAnatomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljacobsson/samp-cli/HEAD/src/shared/templateAnatomy.json --------------------------------------------------------------------------------