forked from Qortal/q-blog
22 lines
478 B
Markdown
22 lines
478 B
Markdown
# Gitea environment quick setup
|
|
|
|
1. Create `.gitea.env` in repo root (or reuse your existing one):
|
|
|
|
```
|
|
GITEA_BASE_URL=https://gitea.qortal.link
|
|
GITEA_TOKEN=your_40_char_token
|
|
OWNER=greenflame089
|
|
REPO=q-blog
|
|
```
|
|
|
|
2. Verify:
|
|
|
|
```
|
|
bash scripts/tracker/with_env.sh .gitea.env bash scripts/tracker/verify_phase0.sh
|
|
```
|
|
|
|
Notes:
|
|
|
|
- `verify_phase0.sh` will auto-load `.gitea.env` if env vars are missing.
|
|
- If you already exported vars in your shell, you can call the script directly.
|