Skip to content
This repository has been archived by the owner on Apr 19, 2022. It is now read-only.

Commit

Permalink
Update README and gitignore files.
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten-stripe committed Apr 15, 2019
1 parent 3841ced commit 69521f4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ pids
*.seed
*.pid.lock

# Java backend files
server/java/build/*
server/java/gradle/*
server/java/out/*

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ The [Sources API](https://stripe.com/docs/sources) provides a single integration

Instructions for running the Node.js server in [`server/node`](/server/node) are below. You can find alternative server implementations in the [`server`](/server) directory:

- Java, Spark: [`server/java`](/server/java)
- Node, Express: [`server/node`](/server/node)
- Python, Flask: [`server/python`](/server/python)
- Ruby, Sinatra: [`server/ruby`](/server/ruby)
Expand Down
5 changes: 5 additions & 0 deletions server/java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Java backend files
build/*
.gradle/*
gradle/*
out/*
3 changes: 2 additions & 1 deletion server/java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export STRIPE_PUBLISHABLE_KEY=
export STRIPE_SECRET_KEY=
export STRIPE_WEBHOOK_SECRET=
export STRIPE_ACCOUNT_COUNTRY=
export PAYMENT_METHODS=
export PAYMENT_METHODS="alipay, bancontact, card, eps, ideal, giropay, multibanco, sofort, wechat"
export NGROK_SUBDOMAIN=
export NGROK_AUTHTOKEN=
```
Expand Down Expand Up @@ -80,4 +80,5 @@ ngrok will display a UI in your terminal telling you the new forwarding address
Don't forget to append `/webhook` when you set up your Stripe webhook URL in the Dashboard. Example URL to be called: `https://75795038.ngrok.io/webhook`.

## Credits

- Code: [Mike Shaw](https://www.linkedin.com/in/mandshaw/)

1 comment on commit 69521f4

@mikeshaw-stripe
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

Please sign in to comment.