-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e4c1bc
commit 9307465
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
|
||
# Contributing to Pluto Theme Mode | ||
|
||
Thank you for considering contributing to Pluto Theme Mode! Here are the steps to get started: | ||
|
||
## How to Contribute | ||
|
||
1. **Fork the repository** to your GitHub account. | ||
2. **Clone your fork** to your local machine: | ||
```bash | ||
git clone https://github.com/your-username/pluto-theme-mode.git | ||
``` | ||
3. **Create a new branch** for your feature or fix: | ||
```bash | ||
git checkout -b feature/your-feature-name | ||
``` | ||
4. **Make your changes** to the code. | ||
5. **Commit your changes** with a meaningful message: | ||
```bash | ||
git commit -m "Your detailed commit message" | ||
``` | ||
6. **Push your changes**: | ||
```bash | ||
git push origin feature/your-feature-name | ||
``` | ||
7. **Open a pull request** to the `main` branch of the original repository. | ||
|
||
## Development Setup | ||
|
||
To set up the development environment locally, follow these steps: | ||
|
||
1. **Clone the repository**: | ||
```bash | ||
git clone https://github.com/ChakkritGit/pluto-theme-mode.git | ||
``` | ||
2. **Install dependencies**: | ||
```bash | ||
npm install | ||
``` | ||
3. **Run the development server**: | ||
```bash | ||
npm start | ||
``` | ||
|
||
## Testing | ||
|
||
To run tests for this project, use: | ||
|
||
```bash | ||
npm test | ||
``` | ||
|
||
Thank you for your contribution! |