-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
2 changed files
with
25 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,2 @@ | ||
API_URL=https://api.print.one | ||
API_KEY=live_abcdefghijklmnopqrstuvwxyz0123456789 |
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,23 @@ | ||
# Contributing Guide | ||
|
||
## Setting up development environment | ||
|
||
### Prerequisites | ||
|
||
- Node.js | ||
- npm | ||
|
||
### Steps | ||
|
||
1. Clone the repository with `git clone https://github.com/Print-one/print-one-js.git` | ||
2. Enter the repository, and run `npm install` to install all dependencies. | ||
3. Run `npm run test` to run the tests. NOTE: This requires you to have followed the setting up test environment steps (see below). | ||
|
||
## Setting up test environment | ||
|
||
To setup the test environment, copy over the `.env.example` file to `.env` and fill in the required values. | ||
To then run the tests, run `npm run test`. | ||
|
||
## Pull Requests | ||
|
||
Make sure when submitting a pull requests that your code passes the tests, and that you have written tests for any new features or bug fixes. |