├── .githooks └── pre-commit ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── cmd ├── clean.go ├── create.go ├── db.go ├── docs.go ├── doctor.go ├── fork.go ├── init.go ├── list.go ├── pull.go ├── root.go ├── run.go ├── script.go └── upgrade.go ├── go.mod ├── go.sum ├── main.go ├── resources ├── corgi.png ├── corgi.svg └── readme │ └── commands │ ├── _category_.json │ ├── corgi.md │ ├── corgi_clean.md │ ├── corgi_create.md │ ├── corgi_db.md │ ├── corgi_docs.md │ ├── corgi_doctor.md │ ├── corgi_fork.md │ ├── corgi_init.md │ ├── corgi_list.md │ ├── corgi_pull.md │ ├── corgi_run.md │ ├── corgi_script.md │ └── corgi_upgrade.md ├── templates ├── arangodbTemplate.go ├── cassandraTemlate.go ├── clickhouseTemplate.go ├── cockroachTemplate.go ├── couchdbTemplate.go ├── dgraphTemplate.go ├── dockerServiceTemplate.go ├── dragonflyTemplate.go ├── dynamodbTemplate.go ├── elasticsearchTemplate.go ├── faunadbTemplate.go ├── influxdbTemplate.go ├── kafkaTemplate.go ├── keydbTemplate.go ├── mariadbTemplate.go ├── meilisearchTemplate.go ├── mongodbTemplate.go ├── mssqlTemplate.go ├── mysqlTemplate.go ├── neo4jTemplate.go ├── postgisTemplate.go ├── postgresTemplate.go ├── rabbitmqTemplate.go ├── redictTemplate.go ├── redisServerTemplate.go ├── redisTemplate.go ├── s3Template.go ├── scyllaTemplate.go ├── skytableTemplate.go ├── sqsTemplate.go ├── surrealdbTemplate.go ├── timescaledbTemplate.go ├── valkeyTemplate.go └── yugabytedbTemplate.go └── utils ├── art └── art.go ├── cobraFlags.go ├── config.go ├── databaseConfig.go ├── dbDrivers.go ├── directory.go ├── directory_test.go ├── docker.go ├── examples.go ├── execute.go ├── generateEnv.go ├── getRandomQuote.go ├── instructionsToInstallTools.go ├── messages.go ├── proc_default.go ├── proc_windows.go ├── prompt.go ├── sendInterrupt_default.go ├── sendInterrupt_windows.go ├── serviceDrivers.go ├── startCommands.go ├── storage.go └── url.go /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/TODO -------------------------------------------------------------------------------- /cmd/clean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/clean.go -------------------------------------------------------------------------------- /cmd/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/create.go -------------------------------------------------------------------------------- /cmd/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/db.go -------------------------------------------------------------------------------- /cmd/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/docs.go -------------------------------------------------------------------------------- /cmd/doctor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/doctor.go -------------------------------------------------------------------------------- /cmd/fork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/fork.go -------------------------------------------------------------------------------- /cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/init.go -------------------------------------------------------------------------------- /cmd/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/list.go -------------------------------------------------------------------------------- /cmd/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/pull.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/run.go -------------------------------------------------------------------------------- /cmd/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/script.go -------------------------------------------------------------------------------- /cmd/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/cmd/upgrade.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/main.go -------------------------------------------------------------------------------- /resources/corgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/corgi.png -------------------------------------------------------------------------------- /resources/corgi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/corgi.svg -------------------------------------------------------------------------------- /resources/readme/commands/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/_category_.json -------------------------------------------------------------------------------- /resources/readme/commands/corgi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_clean.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_create.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_db.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_docs.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_doctor.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_fork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_fork.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_init.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_list.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_pull.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_run.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_script.md -------------------------------------------------------------------------------- /resources/readme/commands/corgi_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/resources/readme/commands/corgi_upgrade.md -------------------------------------------------------------------------------- /templates/arangodbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/arangodbTemplate.go -------------------------------------------------------------------------------- /templates/cassandraTemlate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/cassandraTemlate.go -------------------------------------------------------------------------------- /templates/clickhouseTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/clickhouseTemplate.go -------------------------------------------------------------------------------- /templates/cockroachTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/cockroachTemplate.go -------------------------------------------------------------------------------- /templates/couchdbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/couchdbTemplate.go -------------------------------------------------------------------------------- /templates/dgraphTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/dgraphTemplate.go -------------------------------------------------------------------------------- /templates/dockerServiceTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/dockerServiceTemplate.go -------------------------------------------------------------------------------- /templates/dragonflyTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/dragonflyTemplate.go -------------------------------------------------------------------------------- /templates/dynamodbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/dynamodbTemplate.go -------------------------------------------------------------------------------- /templates/elasticsearchTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/elasticsearchTemplate.go -------------------------------------------------------------------------------- /templates/faunadbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/faunadbTemplate.go -------------------------------------------------------------------------------- /templates/influxdbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/influxdbTemplate.go -------------------------------------------------------------------------------- /templates/kafkaTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/kafkaTemplate.go -------------------------------------------------------------------------------- /templates/keydbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/keydbTemplate.go -------------------------------------------------------------------------------- /templates/mariadbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/mariadbTemplate.go -------------------------------------------------------------------------------- /templates/meilisearchTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/meilisearchTemplate.go -------------------------------------------------------------------------------- /templates/mongodbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/mongodbTemplate.go -------------------------------------------------------------------------------- /templates/mssqlTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/mssqlTemplate.go -------------------------------------------------------------------------------- /templates/mysqlTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/mysqlTemplate.go -------------------------------------------------------------------------------- /templates/neo4jTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/neo4jTemplate.go -------------------------------------------------------------------------------- /templates/postgisTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/postgisTemplate.go -------------------------------------------------------------------------------- /templates/postgresTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/postgresTemplate.go -------------------------------------------------------------------------------- /templates/rabbitmqTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/rabbitmqTemplate.go -------------------------------------------------------------------------------- /templates/redictTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/redictTemplate.go -------------------------------------------------------------------------------- /templates/redisServerTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/redisServerTemplate.go -------------------------------------------------------------------------------- /templates/redisTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/redisTemplate.go -------------------------------------------------------------------------------- /templates/s3Template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/s3Template.go -------------------------------------------------------------------------------- /templates/scyllaTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/scyllaTemplate.go -------------------------------------------------------------------------------- /templates/skytableTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/skytableTemplate.go -------------------------------------------------------------------------------- /templates/sqsTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/sqsTemplate.go -------------------------------------------------------------------------------- /templates/surrealdbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/surrealdbTemplate.go -------------------------------------------------------------------------------- /templates/timescaledbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/timescaledbTemplate.go -------------------------------------------------------------------------------- /templates/valkeyTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/valkeyTemplate.go -------------------------------------------------------------------------------- /templates/yugabytedbTemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/templates/yugabytedbTemplate.go -------------------------------------------------------------------------------- /utils/art/art.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/art/art.go -------------------------------------------------------------------------------- /utils/cobraFlags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/cobraFlags.go -------------------------------------------------------------------------------- /utils/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/config.go -------------------------------------------------------------------------------- /utils/databaseConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/databaseConfig.go -------------------------------------------------------------------------------- /utils/dbDrivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/dbDrivers.go -------------------------------------------------------------------------------- /utils/directory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/directory.go -------------------------------------------------------------------------------- /utils/directory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/directory_test.go -------------------------------------------------------------------------------- /utils/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/docker.go -------------------------------------------------------------------------------- /utils/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/examples.go -------------------------------------------------------------------------------- /utils/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/execute.go -------------------------------------------------------------------------------- /utils/generateEnv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/generateEnv.go -------------------------------------------------------------------------------- /utils/getRandomQuote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/getRandomQuote.go -------------------------------------------------------------------------------- /utils/instructionsToInstallTools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/instructionsToInstallTools.go -------------------------------------------------------------------------------- /utils/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/messages.go -------------------------------------------------------------------------------- /utils/proc_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/proc_default.go -------------------------------------------------------------------------------- /utils/proc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/proc_windows.go -------------------------------------------------------------------------------- /utils/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/prompt.go -------------------------------------------------------------------------------- /utils/sendInterrupt_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/sendInterrupt_default.go -------------------------------------------------------------------------------- /utils/sendInterrupt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/sendInterrupt_windows.go -------------------------------------------------------------------------------- /utils/serviceDrivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/serviceDrivers.go -------------------------------------------------------------------------------- /utils/startCommands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/startCommands.go -------------------------------------------------------------------------------- /utils/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/storage.go -------------------------------------------------------------------------------- /utils/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andriiklymiuk/corgi/HEAD/utils/url.go --------------------------------------------------------------------------------