From 556a1436cdc23dd1b987fb9deac01454f3e662e9 Mon Sep 17 00:00:00 2001 From: Varshad Potle Date: Wed, 12 Nov 2025 23:32:27 +0530 Subject: [PATCH 1/2] Add build/setup instructions to README.md (#40431) --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index de7ac422d9f4..809fd9bdddc8 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,20 @@ AMP is an open source project, and we'd love your help making it better! - [AMP's roadmap](https://amp.dev/community/roadmap) provides details on some of the significant projects we are working on. - The [AMP meta repository](https://github.com/ampproject/meta) has information _about_ the AMP open source project, including AMP's [governance](https://github.com/ampproject/meta/blob/main/GOVERNANCE.md). - [AMP's code of conduct](https://github.com/ampproject/meta/blob/main/CODE_OF_CONDUCT.md) documents how all members, committers and volunteers in the community are required to act. AMP strives for a positive and growing project community that provides a safe environment for everyone. + +## Building AMP Locally + +To build and run AMP locally: + +1. Install dependencies: + ```bash + npm install + +2. Build the runtime: + ```bash + npx amp build + +3. Start local server: + ```bash + npx amp serve + From 1e45b6973877f38ed427495cd9f5b2f90a6b83d8 Mon Sep 17 00:00:00 2001 From: Varshad Potle Date: Wed, 12 Nov 2025 23:47:03 +0530 Subject: [PATCH 2/2] Add build/setup instructions to README.md (#40431)