# Run all applications
$ ms configure
# Run a specific applications
$ ms up api nginx database
# Run and Recreate if already exists
$ ms up --recreate api
The flag --recreate has the same effect of do a ms kill and ms up
exec
Execute a command inside the application
➜ ~ ms exec nginx -- date
Mon May 3 01:12:53 UTC 2021
# Entering in the bash mode of nginx
➜ ~ ms exec nginx -- bash
root@nginx-7fd849f65f-xlfjr:/#
logs
Print logs of the application
# Just print latest logs (No Watch / Follow)
$ ms logs nginx
# Follow logs (Watch mode)
$ ms logs nginx -f
proxy
Create a local tunnel between your computer and application
# Listen on default application port
➜ ~ ms proxy nginx
Forwarding from 127.0.0.1:80 -> 80
Forwarding from [::1]:80 -> 80
Port forwarding is ready to get traffic. have fun and enjoy ManyStagings!
# Choose a specific port to listen on your computer
➜ ~ ms proxy nginx -p 8080
Forwarding from 127.0.0.1:8080 -> 80
Forwarding from [::1]:8080 -> 80
Port forwarding is ready to get traffic. have fun and enjoy ManyStagings!
status
Get the status info of all applications inside an environment