Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# 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.


## 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
```