Concourse Installing and Setup [MAC and Windows]

# Councourse Setup --> Official Docs - https://concourse-ci.org/ https:// your_concourse_url curl -Lo concourse https://github.com/concourse/concourse/releases/download/v3.10.0/concourse_darwin_amd64 && chmod +x concourse && mv concourse /usr/local/bin curl -Lo fly https://github.com/concourse/concourse/releases/download/v3.10.0/fly_darwin_amd64 && chmod +x fly && mv fly /usr/local/bin/ brew install postgres concourse --version fly --version Windows Windows If your local computer runs Windows, hit the Windows key on your keyboard, type powershell , and hit ENTER . In the window that appears, make a bin folder by typing: mkdir bin Next, move the fly.exe file from your Downloads folder to the new bin folder by typing: mv Downloads/fly.exe bin Check whether you have a PowerShell profile already available: Test-Path $profile If the respon...