Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
alexbouchardd
approved these changes
Jan 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Improve Local Development Setup
Why
The previous local dev setup required manual configuration and had port conflicts with common services.
What
Quick start config files - Added
.env.devand.outpost.yaml.devas ready-to-use starter configs that work out of the boxModular dependency management - Refactored docker-compose to use profiles controlled by
LOCAL_DEV_*env vars:Port conflict prevention - All host ports now use
2xxxxprefix (e.g.,26379for Redis,25432for PostgreSQL)Streamlined documentation - Rewrote
getting-started.mdwith quick start at the top and reference tables for configurationTest cleanup - Refactored rsmq tests to use shared
testutil.CreateTestRedisClientGetting Started
git clone https://github.com/hookdeck/outpost.git cd outpost cp .env.dev .env cp .outpost.yaml.dev .outpost.yaml make network make up/deps make up/outpostAPI available at
http://localhost:3333Configuring Local Dependencies
Configuration is split between two files:
.env- Controls which Docker services to start (LOCAL_DEV_*variables).outpost.yaml- Outpost application settings (MQ connections, log store, API keys, etc.)The
.envfile controls which servicesmake up/depsstarts viaLOCAL_DEV_*variables. By default, the setup uses Redis, PostgreSQL, and RabbitMQ.Example: Switch from RabbitMQ to AWS SQS
Edit
.env:Edit
.outpost.yamlto use SQS:Restart dependencies:
Available Options
LOCAL_DEV_DRAGONFLY=1LOCAL_DEV_POSTGRES=1LOCAL_DEV_CLICKHOUSE=1LOCAL_DEV_RABBITMQ=1LOCAL_DEV_LOCALSTACK=1LOCAL_DEV_GCP=1LOCAL_DEV_REDIS_COMMANDER=28081LOCAL_DEV_PGADMIN=28082LOCAL_DEV_TABIX=28083