mny

Crates.iomny
lib.rsmny
version0.1.1
created_at2025-05-27 07:30:50.820921+00
updated_at2025-06-30 10:38:53.669064+00
descriptionApplication multiplexer allowing to run multiple application with one command
homepage
repository
max_upload_size
id1690720
size22,146
Adrian Woźniak (Eraden)

documentation

README

mny

Applications multiplexer allowing to run multiple application with single command and printing output to console

Examples

Config files

Config should be placed in project directory as mny.toml or config/mny.toml

# Shared

[[apps]]

name = 'users'
cmd = 'cargo'
args = ['run', '--bin', 'users']
env = ['CONFIG_PATH=./config/users.toml']
filters = ['redis_client', 'sea-orm'] # ignore output lines with string containing any of given substring

# Web

[[apps]]

name = 'posts'
cmd = 'cargo'
args = ['run', '--bin', 'posts']
env = ['CONFIG_PATH=./config/posts.toml']
filters = ['redis_client']
Commit count: 0

cargo fmt