# Technical Documentation: timqian/docs > ℹ️ **Provenance:** Hybrid Fusion: `timqian/docs` + `timqian/docs` · [CodeWiki Reference](https://codewiki.google/github.com/timqian/docs) · Recency: Active (< 180 days) ## 1. Project Overview & Quickstart (timqian/docs) # The Graph Docs This is the source code for The Graph’s documentation, accessible at [https://thegraph.com/docs](https://thegraph.com/docs). ## Contributing Please read [`CONTRIBUTING.md`](https://github.com/graphprotocol/docs/blob/main/CONTRIBUTING.md). Thank you ❤️ ## Local Setup This project is built on [Next.js](https://nextjs.org/). You can run it on your machine, provided you have [Node 16+](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com) installed. First, clone the repo: ```bash git clone https://github.com/graphprotocol/docs.git ``` Make sure you are inside the folder: ```bash cd docs ``` Install the dependencies: ```bash yarn ``` Then, run the project: ```bash yarn dev ``` That’s it! Go to http://localhost:3000 to see it in action. Any change you make to a file in `pages` should be refreshed automatically in your browser. ## 2. Official Technical Reference & Guides (timqian/docs) ## File: README.md # The Graph Docs This is the source code for The Graph’s documentation, accessible at [https://thegraph.com/docs](https://thegraph.com/docs). ## Contributing Please read [`CONTRIBUTING.md`](https://github.com/graphprotocol/docs/blob/main/CONTRIBUTING.md). Thank you ❤️ ## Local Setup This project is built on [Next.js](https://nextjs.org/). You can run it on your machine, provided you have [Node 16+](https://nodejs.org/en/) and [Yarn](https://yarnpkg.com) installed. First, clone the repo: ```bash git clone https://github.com/graphprotocol/docs.git ``` Make sure you are inside the folder: ```bash cd docs ``` Install the dependencies: ```bash yarn ``` Then, run the project: ```bash yarn dev ``` That’s it! Go to http://localhost:3000 to see it in action. Any change you make to a file in `pages` should be refreshed automatically in your browser. --- ## File: .terraform/README.md # Graph Docs Terraform configs ## Setup Initialize terraform and apply: ``` terraform init terraform apply ``` Get service account JSON keys and add as github repo secrets: 1. `GCP_SA_KEY_STAGING` ``` terraform show -json | jq -r '.values.root_module.child_modules[] | select(.address=="module.staging") | .resources[] | select(.address=="module.staging.google_service_account_key.graph-docs-ci-cd") | .values.private_key' | base64 -d ``` 2. `GCP_SA_KEY_PRODUCTION` ``` terraform show -json | jq -r '.values.root_module.child_modules[] | select(.address=="module.production") | .resources[] | select(.address=="module.production.google_service_account_key.graph-docs-ci-cd") | .values.private_key' | base64 -d ``` --- METRICS --- - Files Extracted: 3 - Estimated Token Budget: ~656 tokens - Recency Window: Active (< 180 days) - Canonical Reference: https://codewiki.google/github.com/timqian/docs