Corgi: The CLI That Tames Your Local Microservices Chaos

This page summarizes the projects mentioned and recommended in the original post on dev.to

SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io
featured
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
  1. corgi_examples

    Example showcases for corgi cli

    corgi run -t https://github.com/Andriiklymiuk/corgi_examples/blob/main/honoExpoTodo/hono-bun-expo.corgi-compose.yml

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.

    SurveyJS logo
  3. dodo

    services: dodoApp: cloneFrom: https://github.com/Andriiklymiuk/dodo.git path: ./dodo depends_on_services: - name: dodoServer envAlias: EXPO_PUBLIC_TODO_URL suffix: / environment: - EXPO_PUBLIC_TODO_WEBSOCKET_URL=ws://localhost:65533 beforeStart: - yarn install start: # you can run yarn startAll to open web, android and ios all at once # - yarn startAll # or you can run yarn web, yarn ios, yarn android separately - yarn ios afterStart: # close ios emulator - killall Simulator 2>/dev/null || true # close android emulator - killall qemu-system-aarch64 2>/dev/null || true dodoServer: cloneFrom: https://github.com/Andriiklymiuk/dodoServer.git path: ./dodoServer port: 65533 beforeStart: - bun install start: - bun dev

  4. dodoServer

    services: dodoApp: cloneFrom: https://github.com/Andriiklymiuk/dodo.git path: ./dodo depends_on_services: - name: dodoServer envAlias: EXPO_PUBLIC_TODO_URL suffix: / environment: - EXPO_PUBLIC_TODO_WEBSOCKET_URL=ws://localhost:65533 beforeStart: - yarn install start: # you can run yarn startAll to open web, android and ios all at once # - yarn startAll # or you can run yarn web, yarn ios, yarn android separately - yarn ios afterStart: # close ios emulator - killall Simulator 2>/dev/null || true # close android emulator - killall qemu-system-aarch64 2>/dev/null || true dodoServer: cloneFrom: https://github.com/Andriiklymiuk/dodoServer.git path: ./dodoServer port: 65533 beforeStart: - bun install start: - bun dev

  5. RabbitMQ

    Open source RabbitMQ: core server and tier 1 (built-in) plugins

    rabbitmq

  6. go_aws_sqs_listener

    Golang server for listening to aws sqs queue

    db_services: postgres-db-for-go-example: driver: postgres databaseName: best_name_for_database user: woof password: woof_database_password port: 5234 aws-sqs-queue-for-go: driver: sqs databaseName: sqs_queue_name port: 4599 services: go_aws_sqs_listener: cloneFrom: https://github.com/Andriiklymiuk/go_aws_sqs_listener.git path: ./go_aws_sqs_listener depends_on_db: - name: postgres-db-for-go-example envAlias: none - name: aws-sqs-queue-for-go envAlias: none port: 7092 start: - go run . deno_aws_sqs_emitter: cloneFrom: https://github.com/Andriiklymiuk/deno_aws_sqs_emitter.git path: ./deno_aws_sqs_emitter depends_on_db: - name: aws-sqs-queue-for-go envAlias: none port: 7098 start: - deno run --allow-net --allow-read --allow-env server.ts required: go: why: - To launch locally service manually - You need to install it yourself brew install go checkCmd: go version deno: why: - Needed to launch deno_aws_sqs_emitter - You need to install it yourself from https://deno.land/manual/getting_started/installation checkCmd: deno --version docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  7. PostgreSQL

    Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch

    postgres

  8. deno_aws_sqs_emitter

    Deno server that emits message to sqs message queue

    db_services: postgres-db-for-go-example: driver: postgres databaseName: best_name_for_database user: woof password: woof_database_password port: 5234 aws-sqs-queue-for-go: driver: sqs databaseName: sqs_queue_name port: 4599 services: go_aws_sqs_listener: cloneFrom: https://github.com/Andriiklymiuk/go_aws_sqs_listener.git path: ./go_aws_sqs_listener depends_on_db: - name: postgres-db-for-go-example envAlias: none - name: aws-sqs-queue-for-go envAlias: none port: 7092 start: - go run . deno_aws_sqs_emitter: cloneFrom: https://github.com/Andriiklymiuk/deno_aws_sqs_emitter.git path: ./deno_aws_sqs_emitter depends_on_db: - name: aws-sqs-queue-for-go envAlias: none port: 7098 start: - deno run --allow-net --allow-read --allow-env server.ts required: go: why: - To launch locally service manually - You need to install it yourself brew install go checkCmd: go version deno: why: - Needed to launch deno_aws_sqs_emitter - You need to install it yourself from https://deno.land/manual/getting_started/installation checkCmd: deno --version docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  9. Stream

    Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.

    Stream logo
  10. reactnative_app_get_user

    Example react native app that gets user info

    db_services: postgres_with_data_for_go_reactnative: driver: postgres databaseName: bestDbName user: awesomeUser password: themostsecurepasswordyoucanimaging port: 5511 seedFromFilePath: ./users_dump.sql services: reactnative_app_get_user: cloneFrom: https://github.com/Andriiklymiuk/reactnative_app_get_user.git path: ./reactnative_app_get_user depends_on_services: - name: go_server_user_data beforeStart: - yarn install - npx pod-install start: - yarn start - yarn ios afterStart: - yarn ios:simulator:close go_server_user_data: cloneFrom: https://github.com/Andriiklymiuk/go_server_user_data.git path: ./go_server_user_data port: 7012 depends_on_db: - name: postgres_with_data_for_go_reactnative envAlias: none start: - go run . required: go: why: - To launch locally go service manually - You need to install it yourself brew install go checkCmd: go version yarn: why: - To build and launch some of the repos locally with yarn install: - brew install yarn checkCmd: yarn -v node: why: - To build and launch some of the repos locally with npm install: - brew install node checkCmd: node -v docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  11. MySQL

    MySQL Server, the world's most popular open source database, and MySQL Cluster, a real-time, open source transactional database.

    mysql

  12. go_server_user_data

    Example go server that gives user data

    db_services: postgres_with_data_for_go_reactnative: driver: postgres databaseName: bestDbName user: awesomeUser password: themostsecurepasswordyoucanimaging port: 5511 seedFromFilePath: ./users_dump.sql services: reactnative_app_get_user: cloneFrom: https://github.com/Andriiklymiuk/reactnative_app_get_user.git path: ./reactnative_app_get_user depends_on_services: - name: go_server_user_data beforeStart: - yarn install - npx pod-install start: - yarn start - yarn ios afterStart: - yarn ios:simulator:close go_server_user_data: cloneFrom: https://github.com/Andriiklymiuk/go_server_user_data.git path: ./go_server_user_data port: 7012 depends_on_db: - name: postgres_with_data_for_go_reactnative envAlias: none start: - go run . required: go: why: - To launch locally go service manually - You need to install it yourself brew install go checkCmd: go version yarn: why: - To build and launch some of the repos locally with yarn install: - brew install yarn checkCmd: yarn -v node: why: - To build and launch some of the repos locally with npm install: - brew install node checkCmd: node -v docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  13. nestjs_rabbitmq_emitter

    Emit example rabbitmq messages

    db_services: rabbitmq-for-go-nestjs: user: best_user password: most_secure_password driver: rabbitmq databaseName: rabbitmq-for-go-nestjs-db port: 4577 services: nestjs_rabbitmq_emitter: cloneFrom: https://github.com/Andriiklymiuk/nestjs_rabbitmq_emitter.git path: ./nestjs_rabbitmq_emitter port: 7856 depends_on_db: - name: rabbitmq-for-go-nestjs beforeStart: - pnpm install start: - pnpm start:dev go_rabbitmq_listener: cloneFrom: https://github.com/Andriiklymiuk/go_rabbitmq_listener.git path: ./go_rabbitmq_listener port: 7854 depends_on_db: - name: rabbitmq-for-go-nestjs beforeStart: - go run . required: go: why: - To launch locally sync-go-trigger service manually - You need to install it yourself brew install go checkCmd: go version pnpm: why: - To launch products service locally install: - brew install pnpm checkCmd: pnpm -v docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  14. Redis

    For developers, who are building real-time data-driven applications, Redis is the preferred, fastest, and most feature-rich cache, data structure server, and document and vector query engine.

    redis

  15. go_rabbitmq_listener

    Go server, that listens to rabbitmq

    db_services: rabbitmq-for-go-nestjs: user: best_user password: most_secure_password driver: rabbitmq databaseName: rabbitmq-for-go-nestjs-db port: 4577 services: nestjs_rabbitmq_emitter: cloneFrom: https://github.com/Andriiklymiuk/nestjs_rabbitmq_emitter.git path: ./nestjs_rabbitmq_emitter port: 7856 depends_on_db: - name: rabbitmq-for-go-nestjs beforeStart: - pnpm install start: - pnpm start:dev go_rabbitmq_listener: cloneFrom: https://github.com/Andriiklymiuk/go_rabbitmq_listener.git path: ./go_rabbitmq_listener port: 7854 depends_on_db: - name: rabbitmq-for-go-nestjs beforeStart: - go run . required: go: why: - To launch locally sync-go-trigger service manually - You need to install it yourself brew install go checkCmd: go version pnpm: why: - To launch products service locally install: - brew install pnpm checkCmd: pnpm -v docker: why: - To launch databases - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v

  16. Neo4j

    Graphs for Everyone

    neo4j

  17. expo_redis_listener

    db_services: redis-for-bun: driver: redis host: localhost user: best_user_for_this_serivce password: most_secure_password_ever port: 2911 services: expo_redis_listener: cloneFrom: https://github.com/Andriiklymiuk/expo_redis_listener.git depends_on_services: - name: bun_redis_server envAlias: EXPO_PUBLIC_API_URL beforeStart: - yarn install start: - yarn ios afterStart: - yarn ios:simulator:close bun_redis_server: cloneFrom: https://github.com/Andriiklymiuk/bun_redis_server.git port: 1022 depends_on_db: - name: redis-for-bun beforeStart: - bun install start: - bun start required: yarn: why: - To build and launch some of the repos locally with yarn install: - brew install yarn checkCmd: yarn -v bun: why: - To launch products service locally install: - curl -fsSL https://bun.sh/install | bash checkCmd: bun -v docker: why: - To launch database services - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v jq: why: - To format server output in nice format install: - brew install jq checkCmd: jq --version

  18. MariaDB

    MariaDB server is a community developed fork of MySQL server. Started by core members of the original MySQL team, MariaDB actively works with outside developers to deliver the most featureful, stable, and sanely licensed open SQL server in the industry. (by MariaDB)

    mariadb

  19. bun_redis_server

    db_services: redis-for-bun: driver: redis host: localhost user: best_user_for_this_serivce password: most_secure_password_ever port: 2911 services: expo_redis_listener: cloneFrom: https://github.com/Andriiklymiuk/expo_redis_listener.git depends_on_services: - name: bun_redis_server envAlias: EXPO_PUBLIC_API_URL beforeStart: - yarn install start: - yarn ios afterStart: - yarn ios:simulator:close bun_redis_server: cloneFrom: https://github.com/Andriiklymiuk/bun_redis_server.git port: 1022 depends_on_db: - name: redis-for-bun beforeStart: - bun install start: - bun start required: yarn: why: - To build and launch some of the repos locally with yarn install: - brew install yarn checkCmd: yarn -v bun: why: - To launch products service locally install: - curl -fsSL https://bun.sh/install | bash checkCmd: bun -v docker: why: - To launch database services - You need to install it yourself from https://docs.docker.com/desktop/install/mac-install/ checkCmd: docker -v jq: why: - To format server output in nice format install: - brew install jq checkCmd: jq --version

  20. ApacheKafka

    A curated re-sources list for awesome Apache Kafka

    kafka

  21. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Graph Databases vs Relational Databases: What and why?

    6 projects | dev.to | 29 Mar 2023
  • Database Sharding vs Partitioning: What’s the Difference?

    3 projects | dev.to | 26 May 2025
  • Achieving Financial Independence for Open Source Projects

    2 projects | dev.to | 10 Feb 2025
  • List of 45 databases in the world

    27 projects | dev.to | 9 Jul 2024
  • Which Database is Perfect for You? A Comprehensive Guide to MySQL, PostgreSQL, NoSQL, and More

    10 projects | dev.to | 26 Jun 2024

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?