/Knowledge/sources/honojs__hono/llms-full/google-cloud-run-project-setup--3b23c625b27c.md
Google Cloud Run: Project setup - hono-docs
Google Cloud Run: Project setup Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt 2 project setup Summar...
Google Cloud Run: Project setup
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#2-project-setup
Summary
Create a project. Accept the auto-generated project ID at the prompt. sh gcloud projects create --set-as-default --name="my app" Create environment variables for your project ID and project number for easy reuse. It may take ~30 s...
Content
Create a project. Accept the auto-generated project ID at the prompt.
gcloud projects create --set-as-default --name="my app"
Create environment variables for your project ID and project number for easy reuse. It may take ~30 seconds before the project successfully returns with the gcloud projects list command.
PROJECT_ID=$(gcloud projects list \
--format='value(projectId)' \
--filter='name="my app"')
PROJECT_NUMBER=$(gcloud projects list \
--format='value(projectNumber)' \
--filter='name="my app"')
echo $PROJECT_ID $PROJECT_NUMBER
Find your billing account ID.
gcloud billing accounts list
Add your billing account from the prior command to the project.
gcloud billing projects link $PROJECT_ID \
--billing-account=[billing_account_id]
Enable the required APIs.
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#2-project-setup",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Google Cloud Run > 2. Project setup (1)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 511,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Google Cloud Run: Project setup",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}