Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 35 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,53 @@

[![](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)

[Brev.dev](https://brev.dev) makes it easy to develop on remote machines. Use Brev.dev to start a project and share your intance.
[NVIDIA Brev](https://nvidia.brev.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.
Comment thread
PreciselyAlyss marked this conversation as resolved.
Outdated

## Install the cli

### MacOS and Linux
### MacOS

```zsh
brew install brevdev/homebrew-brev/brev && brev login
```
brew install brevdev/homebrew-brev/brev

### Linux

```bash
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
brev login
```

### Windows
**Using Brev With Windows Subsystem for Linux (WSL)**

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.

**Prerequisites**
- WSL installed and configured
- Virtualization enabled in your BIOS
- Ubuntu 20.04 installed from the Microsoft Store

Once you have WSL installed and configured, you can install Brev by running the following command in your terminal:

```bash
sudo bash -c "$(curl -fsSL https://raw.githubusercontent.com/brevdev/brev-cli/main/bin/install-latest.sh)"
```
**Next Steps**

Log in to your Brev account:

```bash
brev login
```

## Get Started

https://console.brev.dev
https://brev.nvidia.com/

## Docs

https://docs.brev.dev
https://docs.nvidia.com/brev/latest/

---

Expand All @@ -31,9 +61,3 @@ https://user-images.githubusercontent.com/14320477/170176621-6b871798-baef-4d42-
## Contributing

We welcome PRs! Checkout [Contributing.md](docs/CONTRIBUTING.md) for more.

## Trying other badge styles

[![](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)

[![](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)
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (
ollamaAPIURL EnvVarName = "OLLAMA_API_URL"
)

var ConsoleBaseURL = "https://console.brev.dev"
var ConsoleBaseURL = "https://brev.nvidia.com"

type ConstantsConfig struct{}

Expand Down
Loading