From 65e699e15cacddf62f53c911eb1d037ba4a4bea0 Mon Sep 17 00:00:00 2001 From: Zane Wolfgang Pickett Date: Sat, 26 Jul 2014 05:07:34 +0000 Subject: [PATCH 1/2] add configuration.md --- docs/configuration.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docs/configuration.md diff --git a/docs/configuration.md b/docs/configuration.md new file mode 100644 index 00000000..628eb2ea --- /dev/null +++ b/docs/configuration.md @@ -0,0 +1,25 @@ +# Configuration + +## Environment Variables + +### Github +Github presently requires both a uses auth details, and an attached application respective auth tokens. The application settings may be found at [github.com/settings/applications/new](https://github.com/settings/applications/new) + +``` +GITHUB_ADMIN_USER +GITHUB_ADMIN_USER_PASSWORD +GITHUB_REDIRECT_URL +GITHUB_CLIENT_ID +GITHUB_SECRET +``` + +### Stripe +A stripe testing account may be freely signed up for over at [dashboard.stripe.com/register](https://dashboard.stripe.com/register). By default your account will be set to testing mode, unless you choice to activate it. Once your account is created your going to want to create the following plans to match what coderwall currently provides: +``` +# TODO: Provide Plan Details +``` + +``` +STRIPE_PUBLISHABLE_KEY +STRIPE_SECRET_KEY +``` \ No newline at end of file From b270de0233dcd2864255d33ec43a072a878cfd18 Mon Sep 17 00:00:00 2001 From: Zane Wolfgang Pickett Date: Sat, 26 Jul 2014 05:13:53 +0000 Subject: [PATCH 2/2] add stripe api page link --- docs/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration.md b/docs/configuration.md index 628eb2ea..48106cc1 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -14,7 +14,7 @@ GITHUB_SECRET ``` ### Stripe -A stripe testing account may be freely signed up for over at [dashboard.stripe.com/register](https://dashboard.stripe.com/register). By default your account will be set to testing mode, unless you choice to activate it. Once your account is created your going to want to create the following plans to match what coderwall currently provides: +A stripe testing account may be freely signed up for over at [dashboard.stripe.com/register](https://dashboard.stripe.com/register). By default your account will be set to testing mode, unless you choice to activate it. Once your account is created your going to want to create the following plans to match what coderwall currently provides, as defined below. Finally [dashboard.stripe.com/account/apikeys](https://dashboard.stripe.com/account/apikeys) will provide test keys for you to use. ``` # TODO: Provide Plan Details ```