| Crates.io | mny |
| lib.rs | mny |
| version | 0.1.1 |
| created_at | 2025-05-27 07:30:50.820921+00 |
| updated_at | 2025-06-30 10:38:53.669064+00 |
| description | Application multiplexer allowing to run multiple application with one command |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1690720 |
| size | 22,146 |
Applications multiplexer allowing to run multiple application with single command and printing output to console
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']