# Install the micro binary curl -fsSL https://install.m3o.com/micro | /bin/bash # Signup before getting started micro signup # Create a new service (follow the instructions and push to Github) micro new helloworld # Deploy the service from github micro run github.com/micro/services/helloworld # Check the service status micro status # Query the logs micro logs helloworld # Call the service micro helloworld --name=Alice # Get your namespace NAMESPACE=$(micro user namespace) # Curl it via the public http API curl "https://$NAMESPACE.m3o.dev/helloworld?name=Alice"