github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/docs/v2/deployment/local-development.md (about) 1 --- 2 title: Local Development 3 keywords: runtime 4 tags: [micro, runtime, dev] 5 sidebar: home_sidebar 6 permalink: /local-development 7 summary: Run a service with the micro runtime 8 --- 9 10 The micro runtime provides a way to manage the lifecycle of services without the complexity of orchestration systems. 11 12 You can start the service with one command 13 14 ``` 15 micro run [service] 16 ``` 17 18 ## Usage 19 20 To run and manage your service locally do the following. 21 22 ``` 23 # Start the server 24 micro server 25 26 # run the service 27 micro run --server examples/greeter/srv 28 ``` 29