mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-08-12 11:40:44 +08:00
20 lines
317 B
Markdown
20 lines
317 B
Markdown
# devcontainer
|
|
|
|
## example usage
|
|
|
|
Below are some example use cases you might want to run from within the devcontainer (either within VSCode or GitHub Codespaces).
|
|
|
|
### Run pre-commit
|
|
|
|
```bash
|
|
# run pre-commit
|
|
pre-commit run --all-files
|
|
```
|
|
|
|
### Docker compose
|
|
|
|
```bash
|
|
# build the image
|
|
docker compose up --build
|
|
```
|