mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-20 01:38:29 +00:00
24 lines
569 B
Markdown
24 lines
569 B
Markdown
# peridot
|
|
|
|
### Local development
|
|
**Requirements:** Temporal (running on host), MinIO (running on host) and Kubernetes (Using Docker for Desktop)
|
|
|
|
Source the `.env` file: `source .env`
|
|
|
|
**Start UI:**
|
|
```
|
|
ibazel run //ui:peridot.server
|
|
```
|
|
|
|
**Start server (deploys to K8s):**
|
|
```
|
|
br //peridot/cmd/v1/peridotserver/ci:peridotserver.dev.local_push_apply
|
|
```
|
|
|
|
**Start ephemeral (deploys to K8s):**
|
|
```
|
|
br //peridot/cmd/v1/peridotephemeral/ci:peridotephemeral.dev.local_push_apply
|
|
```
|
|
|
|
To make changes to the builder or ephemeral instance just re-run the deployment command.
|