├── .circleci └── config.yml ├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .gitmodules ├── .goreleaser.yml ├── .tool-versions ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── branches.go ├── branches_test.go ├── cloudbuild.yaml ├── direct_connect.go ├── direct_connect_test.go ├── examples └── inline_files.md ├── gittrigger ├── gittrigger.go └── gittrigger_test.go ├── go.mod ├── go.sum ├── migration.md ├── mobile_upload.go ├── mobile_upload_test.go ├── rainforest-cli.go ├── rainforest-cli_test.go ├── rainforest ├── branches.go ├── branches_test.go ├── direct_connect.go ├── direct_connect_test.go ├── environments.go ├── environments_test.go ├── files.go ├── files_test.go ├── mobile_upload.go ├── mobile_upload_test.go ├── rainforest.go ├── rainforest_test.go ├── resources.go ├── resources_test.go ├── rfml.go ├── rfml_test.go ├── runner.go ├── runner_test.go ├── tabularvars.go ├── tabularvars_test.go ├── test │ ├── assets │ │ ├── screenshot1.png │ │ └── screenshot2.png │ └── testfile.txt ├── tests.go └── tests_test.go ├── resources.go ├── resources_test.go ├── runner.go ├── runner_test.go ├── script └── validate_formatting ├── tabularvars.go ├── tabularvars_test.go ├── test └── testing.zip ├── tests.go ├── tests_test.go └── update.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.gitmodules -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/.tool-versions -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/SECURITY.md -------------------------------------------------------------------------------- /branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/branches.go -------------------------------------------------------------------------------- /branches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/branches_test.go -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /direct_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/direct_connect.go -------------------------------------------------------------------------------- /direct_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/direct_connect_test.go -------------------------------------------------------------------------------- /examples/inline_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/examples/inline_files.md -------------------------------------------------------------------------------- /gittrigger/gittrigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/gittrigger/gittrigger.go -------------------------------------------------------------------------------- /gittrigger/gittrigger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/gittrigger/gittrigger_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/go.sum -------------------------------------------------------------------------------- /migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/migration.md -------------------------------------------------------------------------------- /mobile_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/mobile_upload.go -------------------------------------------------------------------------------- /mobile_upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/mobile_upload_test.go -------------------------------------------------------------------------------- /rainforest-cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest-cli.go -------------------------------------------------------------------------------- /rainforest-cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest-cli_test.go -------------------------------------------------------------------------------- /rainforest/branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/branches.go -------------------------------------------------------------------------------- /rainforest/branches_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/branches_test.go -------------------------------------------------------------------------------- /rainforest/direct_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/direct_connect.go -------------------------------------------------------------------------------- /rainforest/direct_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/direct_connect_test.go -------------------------------------------------------------------------------- /rainforest/environments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/environments.go -------------------------------------------------------------------------------- /rainforest/environments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/environments_test.go -------------------------------------------------------------------------------- /rainforest/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/files.go -------------------------------------------------------------------------------- /rainforest/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/files_test.go -------------------------------------------------------------------------------- /rainforest/mobile_upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/mobile_upload.go -------------------------------------------------------------------------------- /rainforest/mobile_upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/mobile_upload_test.go -------------------------------------------------------------------------------- /rainforest/rainforest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/rainforest.go -------------------------------------------------------------------------------- /rainforest/rainforest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/rainforest_test.go -------------------------------------------------------------------------------- /rainforest/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/resources.go -------------------------------------------------------------------------------- /rainforest/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/resources_test.go -------------------------------------------------------------------------------- /rainforest/rfml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/rfml.go -------------------------------------------------------------------------------- /rainforest/rfml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/rfml_test.go -------------------------------------------------------------------------------- /rainforest/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/runner.go -------------------------------------------------------------------------------- /rainforest/runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/runner_test.go -------------------------------------------------------------------------------- /rainforest/tabularvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/tabularvars.go -------------------------------------------------------------------------------- /rainforest/tabularvars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/tabularvars_test.go -------------------------------------------------------------------------------- /rainforest/test/assets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/test/assets/screenshot1.png -------------------------------------------------------------------------------- /rainforest/test/assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/test/assets/screenshot2.png -------------------------------------------------------------------------------- /rainforest/test/testfile.txt: -------------------------------------------------------------------------------- 1 | testing123 -------------------------------------------------------------------------------- /rainforest/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/tests.go -------------------------------------------------------------------------------- /rainforest/tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/rainforest/tests_test.go -------------------------------------------------------------------------------- /resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/resources.go -------------------------------------------------------------------------------- /resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/resources_test.go -------------------------------------------------------------------------------- /runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/runner.go -------------------------------------------------------------------------------- /runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/runner_test.go -------------------------------------------------------------------------------- /script/validate_formatting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/script/validate_formatting -------------------------------------------------------------------------------- /tabularvars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/tabularvars.go -------------------------------------------------------------------------------- /tabularvars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/tabularvars_test.go -------------------------------------------------------------------------------- /test/testing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/test/testing.zip -------------------------------------------------------------------------------- /tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/tests.go -------------------------------------------------------------------------------- /tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/tests_test.go -------------------------------------------------------------------------------- /update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainforestapp/rainforest-cli/HEAD/update.go --------------------------------------------------------------------------------