Skip to content

Commit 32800a2

Browse files
BREV-1302: Updated readme and console links to new subdomain (#237)
Updated readme and console links to new subdomain
1 parent 5b555fb commit 32800a2

File tree

2 files changed

+37
-12
lines changed

2 files changed

+37
-12
lines changed

README.md

Lines changed: 36 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![](https://uohmivykqgnnbiouffke.supabase.co/storage/v1/object/public/landingpage/createdevenv1.svg)](https://console.brev.dev/environment/new?repo=https://github.com/brevdev/brev-cli&instance=2x8)
88

9-
[Brev.dev](https://brev.dev) makes it easy to develop on remote machines. Use Brev.dev to start a project and share your intance.
9+
[NVIDIA Brev](https://brev.nvidia.com) provides streamlined access to NVIDIA GPU instances on popular cloud platforms, automatic environment setup, and flexible deployment options, enabling developers to start experimenting instantly.
1010

1111
## Install the cli
1212

@@ -18,19 +18,50 @@ To globally install `brev` [from conda-forge](https://github.com/conda-forge/bre
1818
pixi global install brev
1919
```
2020

21-
### MacOS and Linux
21+
### MacOS
22+
Assumes [Homebrew](https://brew.sh/) (or Workbrew equivalent) are installed.
2223

24+
```zsh
25+
brew install brevdev/homebrew-brev/brev && brev login
2326
```
24-
brew install brevdev/homebrew-brev/brev
27+
28+
### Linux
29+
30+
```bash
31+
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
32+
brev login
33+
```
34+
35+
### Windows
36+
**Using Brev With Windows Subsystem for Linux (WSL)**
37+
38+
Brev is supported on windows currently through the Windows Subsystem for Linux (WSL). This guide will walk you through the steps to get Brev up and running on your Windows machine.
39+
40+
**Prerequisites**
41+
- WSL installed and configured
42+
- Virtualization enabled in your BIOS
43+
- Ubuntu 20.04 installed from the Microsoft Store
44+
45+
Once you have WSL installed and configured, you can install Brev by running the following command in your terminal:
46+
47+
```bash
48+
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
49+
```
50+
**Next Steps**
51+
52+
Log in to your Brev account:
53+
54+
```bash
55+
brev login
2556
```
2657

2758
## Get Started
2859

29-
https://console.brev.dev
60+
https://brev.nvidia.com/
3061

3162
## Docs
3263

33-
https://docs.brev.dev
64+
https://docs.nvidia.com/brev/latest/
3465

3566
---
3667

@@ -39,9 +70,3 @@ https://user-images.githubusercontent.com/14320477/170176621-6b871798-baef-4d42-
3970
## Contributing
4071

4172
We welcome PRs! Checkout [Contributing.md](docs/CONTRIBUTING.md) for more.
42-
43-
## Trying other badge styles
44-
45-
[![](https://uohmivykqgnnbiouffke.supabase.co/storage/v1/object/public/landingpage/brevdeployblack.svg?t=2023-08-15T14%3A21%3A03.847Z)](https://console.brev.dev/environment/new?repo=https://github.com/brevdev/brev-cli&instance=2x8)
46-
47-
[![](https://uohmivykqgnnbiouffke.supabase.co/storage/v1/object/public/landingpage/brevdeploynavy.svg?t=2023-08-15T14%3A21%3A03.847Z)](https://console.brev.dev/environment/new?repo=https://github.com/brevdev/brev-cli&instance=2x8)

pkg/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const (
1818
ollamaAPIURL EnvVarName = "OLLAMA_API_URL"
1919
)
2020

21-
var ConsoleBaseURL = "https://console.brev.dev"
21+
var ConsoleBaseURL = "https://brev.nvidia.com"
2222

2323
type ConstantsConfig struct{}
2424

0 commit comments

Comments
 (0)