Skip to content

Commit

Permalink
Add windows install to qs-tabs
Browse files Browse the repository at this point in the history
Signed-off-by: Donny Yung <donaldyung@datawire.io>

Signed-off-by: Luke Shumaker <lukeshu@datawire.io>
  • Loading branch information
Donny Yung authored and LukeShu committed Aug 4, 2021
1 parent f627656 commit f81289b
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions quick-start/qs-tabs.js
Expand Up @@ -101,20 +101,33 @@ export default function SimpleTabs() {
</CodeBlock>
</TabPanel>
<TabPanel value={value} index={2}>
<div className="docs-hubspot-formwrapper">
<p>
Telepresence for Windows is coming soon! Sign up here to notified when it is available. Until then, Telepresence will work with WSL 2.
</p>
<div className="docs-hubspot-form">
<HubspotForm
portalId='485087'
formId='2f542f1b-3da8-4319-8057-96fed78e4c26'
onSubmit={() => console.log('Submit!')}
onReady={(form) => console.log('Form ready!')}
loading={<div>Loading...</div>}
/>
</div>
</div>
<CodeBlock>
{
'# Make sure you run the following from Powershell as Administrator' +
'# 1. Download the latest windows zip containing telepresence.exe and its dependencies (~50 MB):' +
'\n' +
'curl -fL https://app.getambassador.io/download/tel2/windows/amd64/latest/telepresence.zip -o telepresence.zip' +
'\n \n' +
'# 2. Unzip the zip file to a suitable directory + cleanup zip' +
'\n' +
'Expand-Archive -Path telepresence.zip' +
'\n' +
'Remove-Item \'telepresence.zip\'' +
'\n' +
'cd telepresence' +
'\n \n' +
'# 3. Run the install-telepresence.ps1 to install telepresence\'s dependencies. It will install telepresence to' +
'\n' +
'# C:\\telepresence by default, but you can specify a custom path $path with -Path $path' +
'\n' +
'.\install-telepresence.ps1' +
'\n \n' +
'# 4. Remove the unzipped directory' +
'\n' +
'cd ..' +
'Remove-Item telepresence'
}
</CodeBlock>
</TabPanel>
</div >
);
Expand Down

0 comments on commit f81289b

Please sign in to comment.