29 lines
547 B
Markdown
29 lines
547 B
Markdown
# Scripts
|
|
|
|
## staging-smoke.sh
|
|
|
|
Post-deploy smoke helper for staging/production-like environments.
|
|
|
|
Usage:
|
|
|
|
```bash
|
|
./scripts/staging-smoke.sh https://rmcp.itexp.me
|
|
```
|
|
|
|
## authenticated-staging-smoke.sh
|
|
|
|
Browser-authenticated smoke helper for staging/production-like environments.
|
|
|
|
Required environment variables:
|
|
|
|
- `CRANK_STAGING_ADMIN_EMAIL`
|
|
- `CRANK_STAGING_ADMIN_PASSWORD`
|
|
|
|
Usage:
|
|
|
|
```bash
|
|
CRANK_STAGING_ADMIN_EMAIL=owner@example.com \
|
|
CRANK_STAGING_ADMIN_PASSWORD=secret \
|
|
./scripts/authenticated-staging-smoke.sh https://rmcp.itexp.me
|
|
```
|