# Install the micro binary
go get github.com/micro/micro/v3
# Run the server locally
micro server
# Login to the server(user: admin pass: micro)
micro login
# Create a new service (follow the instructions and push to Github)
micro new helloworld
# Deploy the service from github
micro run 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.localhost:8080/helloworld?name=Alice"
For more info see the
docs or
join wechat for help.