
-
corgi run -t https://github.com/Andriiklymiuk/corgi_examples/blob/main/honoExpoTodo/hono-bun-expo.corgi-compose.yml
-
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.
-
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
-
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
-
rabbitmq
-
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
-
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
-
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
-
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.
-
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
-
MySQL
MySQL Server, the world's most popular open source database, and MySQL Cluster, a real-time, open source transactional database.
mysql
-
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
-
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
-
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
-
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
-
neo4j
-
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
-
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
-
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
-
kafka
-
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.