-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add contributing guide * fix: contributing guide link Co-authored-by: Sabin Adams <[email protected]>
- Loading branch information
1 parent
187eb7a
commit bad97dc
Showing
2 changed files
with
33 additions
and
4 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,26 @@ | ||
# How do I Contribute 💪 | ||
|
||
we're excited to have you on board! | ||
|
||
- Take a look at the existing [Issues](https://github.com/YassinEldeeb/create-prisma-generator/issues) or [create a new issue](https://github.com/YassinEldeeb/create-prisma-generator/issues/new)! | ||
- Fork the Repo. Then, create a branch for any issue that you are working on. Finally, commit your work. | ||
- Create a **[Pull Request](https://github.com/YassinEldeeb/create-prisma-generator/compare)**, which will be reviewed and given suggestions for improvements. | ||
|
||
# Prerequisites | ||
Node.js version installed, [latest LTS is recommended](https://nodejs.org/en/about/releases/) | ||
|
||
# How do I start developing? | ||
Setup and install the needed dependencies by following these steps: | ||
|
||
```sh | ||
git clone https://github.com/sabinadams/aurora | ||
cd aurora | ||
npm i | ||
npm run dev | ||
``` | ||
|
||
You're workflow will be as the following: | ||
|
||
1. Add/Remove/Update/Delete prisma schemas in the `prisma` directory when you're developing a new feature or fixing a bug. | ||
2. Make code changes. | ||
3. See the results of your changes in `generated.prisma` file. |
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