├── .editorconfig ├── .env ├── .github └── workflows │ ├── lint.yml │ └── test.yml ├── .markdownlint.yaml ├── .yamllint ├── LICENSE ├── NOTICE ├── README.md ├── start-local-podman.sh ├── start-local.sh └── tests ├── basic_test.sh ├── expire_license_test.sh ├── install_edot_test.sh ├── install_esonly_test.sh ├── install_from_curl_test.sh ├── install_with_env_variables.sh ├── install_with_version_test.sh ├── start_stop_test.sh ├── uninstall_test.sh └── utility.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | start-local 2 | Copyright 2024 Elasticsearch B.V. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/README.md -------------------------------------------------------------------------------- /start-local-podman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/start-local-podman.sh -------------------------------------------------------------------------------- /start-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/start-local.sh -------------------------------------------------------------------------------- /tests/basic_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/basic_test.sh -------------------------------------------------------------------------------- /tests/expire_license_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/expire_license_test.sh -------------------------------------------------------------------------------- /tests/install_edot_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/install_edot_test.sh -------------------------------------------------------------------------------- /tests/install_esonly_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/install_esonly_test.sh -------------------------------------------------------------------------------- /tests/install_from_curl_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/install_from_curl_test.sh -------------------------------------------------------------------------------- /tests/install_with_env_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/install_with_env_variables.sh -------------------------------------------------------------------------------- /tests/install_with_version_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/install_with_version_test.sh -------------------------------------------------------------------------------- /tests/start_stop_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/start_stop_test.sh -------------------------------------------------------------------------------- /tests/uninstall_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/uninstall_test.sh -------------------------------------------------------------------------------- /tests/utility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elastic/start-local/HEAD/tests/utility.sh --------------------------------------------------------------------------------