/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-2-project-setup-29279cbf3c9e-2-project-setup-s0511-c0000.md
2. Project setup (1) - hono-docs
2. Project setup (1) Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt 2 project setup Summary Crea...
2. Project setup (1)
Source evidence: /Sources/raw/honojshono/honojshono.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_NUMBERFind your billing account ID.
gcloud billing accounts listAdd 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.