Update README

This commit is contained in:
Daniel Egger 2023-05-26 09:57:42 +02:00
parent ae6db9382a
commit 98a4ae2000
2 changed files with 5 additions and 3 deletions

View File

@ -151,8 +151,12 @@ When you run caprover_deploy.sh without arguments, it will deploy the current br
### Cleanup caprover feature branch deployments
```
```bash
# by default it will delete all vbv-feature-* apps
python caprover_cleanup.py
# or specify a specific app regex and delete without confirmation
python caprover_cleanup.py --automated -a 'vbv-bugfix*'
```
## IntelliJ Configuration

View File

@ -7,8 +7,6 @@ from environs import Env
logging.basicConfig(level=logging.DEBUG)
env = Env()
env.read_env("./env_secrets/caprover_feature.env", recurse=False, override=True)
app_name = "vbv-feature-caprover-auto-deploy4"
cap = caprover_api.CaproverAPI(
dashboard_url=env.str("CAPROVER_DOMAIN"),