-
Notifications
You must be signed in to change notification settings - Fork 25
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
1 parent
70c0c5d
commit d4e2129
Showing
10 changed files
with
183 additions
and
7 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 |
---|---|---|
|
@@ -19,3 +19,5 @@ GITHUB_CLIENT_SECRET= | |
|
||
TWITTER_CLIENT_ID= | ||
TWITTER_CLIENT_SECRET= | ||
|
||
REDIS_URL=tcp://127.0.0.1:6379 |
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 @@ | ||
web: vendor/bin/heroku-php-apache2 public/ |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
IndieLogin | ||
========== | ||
|
||
[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) | ||
|
||
IndieLogin enables users to sign in with their domain name by linking their domain name to existing authentication providers. |
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,101 @@ | ||
{ | ||
"name": "Indielogin", | ||
"description": "Deploy Indielogin to heroku", | ||
"repository": "https://github.com/aaronpk/indielogin.com", | ||
"logo": "https://github.com/aaronpk/indielogin.com/raw/master/public/icons/android-chrome-512x512.png", | ||
"website": "https://indielogin.com", | ||
"keywords": ["indielogin", "nginx", "php", "indieauth"], | ||
"addons": [ | ||
"heroku-redis", | ||
{ | ||
"plan": "cleardb:ignite" | ||
} | ||
], | ||
"env": { | ||
"BASE_URL": { | ||
"description": "The base URL of your application including port", | ||
"value": "", | ||
"required": false | ||
}, | ||
"APP_NAME": { | ||
"description": "The application name", | ||
"value": "IndieLogin.com", | ||
"required": false | ||
}, | ||
"DB_HOST": { | ||
"description": "MySQL database Host (include port if necesarry)", | ||
"value": "", | ||
"required": false | ||
}, | ||
"DB_USER": { | ||
"description": "MySQL database username", | ||
"value": "", | ||
"required": false | ||
}, | ||
"DB_PASS": { | ||
"description": "MySQL database password", | ||
"value": "", | ||
"required": false | ||
}, | ||
"DB_NAME": { | ||
"description": "MySQL database name", | ||
"value": "", | ||
"required": false | ||
}, | ||
"HTTP_USER_AGENT": { | ||
"description": "User Agent", | ||
"value": "Indielogin (heroku)" | ||
}, | ||
"GITHUB_CLIENT_ID": { | ||
"description": "Client ID for GitHub API requests", | ||
"value": "", | ||
"required": false | ||
}, | ||
"GITHUB_CLIENT_SECRET": { | ||
"description": "Client Secret for GitHub API requests", | ||
"value": "", | ||
"required": false | ||
}, | ||
"TWITTER_CLIENT_ID": { | ||
"description": "Client ID for Twitter API requests", | ||
"value": "", | ||
"required": false | ||
}, | ||
"TWITTER_SECRET_SECRET": { | ||
"description": "Client Secret for Twitter API requests", | ||
"value": "", | ||
"required": false | ||
}, | ||
"MAILGUN_KEY": { | ||
"description": "Mailgun Key for sending emails", | ||
"value": "", | ||
"required": false | ||
}, | ||
"MAILGUN_DOMAIN": { | ||
"description": "Mailgun Domain to send emails from", | ||
"value": "", | ||
"required": false | ||
}, | ||
"MAILGUN_FROM": { | ||
"description": "Mailgun From email address", | ||
"value": "", | ||
"required": false | ||
}, | ||
"PGP_VERIFICATION_API": { | ||
"description": "PGP Verification API URL", | ||
"value": "", | ||
"required": false | ||
} | ||
}, | ||
"formation": { | ||
"web": { | ||
"quantity": 1, | ||
"size": "free" | ||
} | ||
}, | ||
"buildpacks": [ | ||
{ | ||
"url": "heroku/php" | ||
} | ||
] | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,3 @@ | ||
build: | ||
docker: | ||
web: Dockerfile |
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
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,3 @@ | ||
RewriteEngine On | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteRule ^ index.php [QSA,L] |
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