Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat/SERV-12556-scenario-improvements #212

Closed
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ The following guidelines must be followed by all contributors to this repository

See [our code of conduct](./CODE_OF_CONDUCT.md) for more details.

### Development
1. run `npm i` in root, in /examples/pirate-ship-app, and in /examples/pirate-ship-app/client
2. cd into /examples/pirate-ship-app
3. run `npm run start`
4. accept chrome permissions in popup if you see it
5. open localhost:3000
6. open up parrot extension, set Middleware URL to `http://localhost:3000`
7. you should now be able to select sample scenarios and see the mock data for each

### Opening the PR

* [Fork the Parrot repository](https://github.com/americanexpress/parrot/fork), open a PR to `main`, and follow the guidelines outlined in this document.
Expand Down
1 change: 1 addition & 0 deletions examples/friendly-pirate-app/client/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SKIP_PREFLIGHT_CHECK=true
21 changes: 21 additions & 0 deletions examples/friendly-pirate-app/client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
Loading