rebreak-monorepo/apps/rebreak-native/.deploy-secrets.local.example

29 lines
2.0 KiB
Plaintext

# Rebreak Deploy Secrets — Copy to .deploy-secrets.local (gitignored!)
#
# Source-Reihenfolge (deploy.sh lädt erstes vorhandenes File):
# 1. apps/rebreak-native/.deploy-secrets.local
# 2. ~/.config/rebreak/deploy.env
#
# ──────────────────────────────────────────────────────────────────────────
# iOS — App Store Connect API Key (GRATIS, einmal generieren)
# ──────────────────────────────────────────────────────────────────────────
# 1) Gehe zu https://appstoreconnect.apple.com/access/integrations/api
# 2) "Generate API Key" (Role: Admin oder App Manager)
# 3) Download AuthKey_XXXXXXXXXX.p8 — kann nur EINMAL heruntergeladen werden!
# 4) Speichere unter ~/.appstoreconnect/private_keys/AuthKey_<KEY_ID>.p8
# (altool sucht dort automatisch — Standort ist Pflicht)
# mkdir -p ~/.appstoreconnect/private_keys
# mv ~/Downloads/AuthKey_*.p8 ~/.appstoreconnect/private_keys/
# chmod 600 ~/.appstoreconnect/private_keys/AuthKey_*.p8
#
# Issuer-ID findest du auf derselben Seite ganz oben.
export ASC_API_KEY_ID="ABCDE12345"
export ASC_API_KEY_ISSUER="69a6de70-XXXX-XXXX-XXXX-5bc36a4XXXXX"
export ASC_API_KEY_PATH="$HOME/.appstoreconnect/private_keys/AuthKey_${ASC_API_KEY_ID}.p8"
# ──────────────────────────────────────────────────────────────────────────
# Android — Play Console Service Account
# ──────────────────────────────────────────────────────────────────────────
# export PLAY_SERVICE_ACCOUNT_JSON="$HOME/.config/rebreak/play-service-account.json"