Dynamo is an open-source dynamic routing system designed for payment processing. It intelligently routes payments to different processors based on real-time metrics, helping to optimize payment flows and increase transaction success rates.
# Clone the repositorygit clone https://github.com/yourusername/dynamo.gitcd dynamo# Configure Redis# Make sure Redis is running on localhost:6379 or update the config file# Build the core servicecargo build --release# Run with development configuration./target/release/dynamo
# Clone the repositorygit clone https://github.com/yourusername/dynamo.gitcd dynamo# Build the Docker imagedocker build -t dynamo:latest .# Run with default configurationdocker run -p 8000:8000 -p 9000:9000 dynamo:latest# Run with custom configurationdocker run -p 8000:8000 -p 9000:9000 -v $(pwd)/config:/app/config dynamo:latest