From f8ddf67a7c58edf8027a3a145240d2ad8110b3a7 Mon Sep 17 00:00:00 2001 From: apple Date: Wed, 7 Jan 2026 17:22:15 +0530 Subject: [PATCH 1/2] Add CONTRIBUTING.md with reference to p5.js contribution guide --- CONTRIBUTING.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..797b8a55e2 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,16 @@ +# Contributing to p5.js Website + +Thank you for your interest in contributing to the p5.js website! 🎉 + +This repository follows the contribution guidelines defined in the main p5.js repository. + +👉 Please read the official p5.js contribution guide here: +https://github.com/processing/p5.js/blob/main/CONTRIBUTING.md + +The guide includes: +- How to set up the development environment +- Coding standards +- How to submit issues and pull requests +- Community guidelines + +Following these guidelines helps keep contributions consistent and welcoming for everyone. From f2f6b2bde1278c5a03dd1109555040924700cc03 Mon Sep 17 00:00:00 2001 From: apple Date: Sat, 10 Jan 2026 16:17:03 +0530 Subject: [PATCH 2/2] Add local development setup instructions --- CONTRIBUTING.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 797b8a55e2..f034e87614 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,3 +14,25 @@ The guide includes: - Community guidelines Following these guidelines helps keep contributions consistent and welcoming for everyone. + + +## Local Development Setup + +To set up the p5.js website locally: + +1. Clone the repository: + ```bash + git clone https://github.com/processing/p5.js-website.git + cd p5.js-website + ``` + +2. Install dependencies: + ```bash + npm install + ``` + +3. Start the development server: + ```bash + npm run dev + ``` +