-
Notifications
You must be signed in to change notification settings - Fork 0
🚀 Configure Brev.dev GPU Environment #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/bash | ||
| set -e | ||
|
|
||
| # Brev Doctor Auto-Generated Setup Script | ||
| # Generated: 2025-12-24T23:59:55.743Z | ||
|
|
||
| echo '🚀 Setting up Brev environment...' | ||
|
|
||
| docker build --pull --no-cache --tag circuit_training:gpu ... | ||
| docker run --rm --gpus all -v ${REPO_ROOT}:/workspace ... | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Undefined REPO_ROOT variable causes mount failureThe script uses |
||
|
|
||
| echo '✅ Setup complete!' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Brev.dev Launchable Configuration | ||
| # Generated by Brev Doctor | ||
|
|
||
| name: brev-launchable | ||
| version: "1.0" | ||
|
|
||
| compute: | ||
| gpu: L4x2 | ||
| gpuCount: 2 | ||
|
|
||
| environment: | ||
| architecture: Ampere | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Wrong GPU architecture specified for L4The configuration specifies |
||
| estimatedVram: 6GB | ||
|
|
||
| setup: | ||
| script: .brev/setup.sh | ||
|
|
||
| # Launch this environment at https://brev.dev | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Docker commands contain literal placeholder text
The docker commands end with literal
...text that appears to be placeholder content that was never replaced. Thedocker buildcommand is missing required arguments like--build-argoptions and the Dockerfile path. Thedocker runcommand is similarly incomplete. These commands will fail when executed because...will be interpreted as literal arguments by the shell.