github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/docs/v2/deployment/deploy-local.md (about) 1 --- 2 title: Local Deployment 3 keywords: local 4 tags: [local] 5 sidebar: home_sidebar 6 permalink: /deploy-local 7 summary: 8 --- 9 10 Micro is incredibly simple to spin up locally 11 12 ## Install 13 14 From source 15 16 ``` 17 go get github.com/tickoalcantara12/micro/v2 18 ``` 19 20 Release binary 21 22 ``` 23 # MacOS 24 curl -fsSL https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh | /bin/bash 25 26 # Linux 27 wget -q https://raw.githubusercontent.com/micro/micro/master/scripts/install.sh -O - | /bin/bash 28 29 # Windows 30 powershell -Command "iwr -useb https://raw.githubusercontent.com/micro/micro/master/scripts/install.ps1 | iex" 31 ``` 32 33 ## Run 34 35 Running micro is as simple as typing `micro`. 36 37 ``` 38 # Display the commands 39 micro --help 40 ``` 41 42 To run the server 43 44 ``` 45 micro server 46 ``` 47