Sanitized single-commit public mirror of recipe-maintainer. - Removed test-ssh/.testenv (live creds); added test-ssh/.testenv.example placeholders. - Removed plans/ and planned-updates/ (deployment-planning docs) so no client/ deployment domains appear in the public repo. - All other secret stores were already gitignored. - docs.coopcloud.tech retained as a submodule (public upstream).
33 lines
958 B
Markdown
33 lines
958 B
Markdown
# Bluesky PDS — First-Time Setup
|
|
|
|
## Prerequisites
|
|
|
|
- DNS: `bluesky-pds.<domain_suffix>` must resolve to the server
|
|
- DNS: Wildcard `*.bluesky-pds.<domain_suffix>` must resolve to the server (for subdomain handles)
|
|
|
|
## Steps
|
|
|
|
1. **Create the app:**
|
|
```bash
|
|
abra app new bluesky-pds --server <SERVER> --domain bluesky-pds.<DOMAIN_SUFFIX> --no-input
|
|
```
|
|
|
|
2. **Generate secrets:**
|
|
```bash
|
|
abra app secret generate bluesky-pds.<DOMAIN_SUFFIX> --all -m --no-input
|
|
```
|
|
Save output to `recipe-info/testsecrets/bluesky-pds.<DOMAIN_SUFFIX>`.
|
|
|
|
3. **Deploy:**
|
|
```bash
|
|
abra app deploy bluesky-pds.<DOMAIN_SUFFIX> --chaos --force --no-input
|
|
```
|
|
|
|
4. **Create test account:**
|
|
```bash
|
|
python3 recipe-info/bluesky-pds/tests/create_test_account.py
|
|
```
|
|
This saves credentials to `recipe-info/bluesky-pds/test-account-<domain>.json`.
|
|
|
|
5. **Verify:** curl `https://bluesky-pds.<DOMAIN_SUFFIX>/xrpc/_health` returns HTTP 200 with JSON.
|