mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-29 16:14:59 +00:00
13 lines
512 B
Plaintext
13 lines
512 B
Plaintext
# 1. Create new Google Cloud Project
|
|
gcloud projects create {{PROJECT_ID}} --name="{{COMPANY_NAME}} AI Agent System"
|
|
|
|
# 2. Set default project
|
|
gcloud config set project {{PROJECT_ID}}
|
|
|
|
# 3. Enable required APIs
|
|
gcloud services enable aiplatform.googleapis.com
|
|
gcloud services enable storage.googleapis.com
|
|
gcloud services enable cloudfunctions.googleapis.com
|
|
gcloud services enable run.googleapis.com
|
|
gcloud services enable firestore.googleapis.com
|
|
gcloud services enable secretmanager.googleapis.com |