- fix #55
- [Breaking] fix
port_forlogic.- Ports may be specified explicitly, so I stopped adjusting them automatically with
app_index.
- Ports may be specified explicitly, so I stopped adjusting them automatically with
// before
pub fn port_for(env_path: &PathBuf, port: Option<u32>, app_index: usize, concurrency_index: usize) -> u32 {
base_port(env_path, port) + (app_index * 100 + concurrency_index) as u32
}
// after
pub fn port_for(env_path: &PathBuf, port: Option<u32>, concurrency_index: usize) -> u32 {
base_port(env_path, port) + concurrency_index
} - Refactor All
- [Breaking] The output format of
ultraman export <format> <location>has changed
- [Breaking] The output format of
- Add Badges
Please see milestone v0.1.2
2020/12/24
- Support to install by homebrew
Please see milestone v0.1.1
2020/12/13
First Release 馃帀
foreman's rust implementation
- ultraman start
- ultraman run
- ultraman export
Please see milestone v0.1.0