forked from cypht-org/cypht
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.env.example added to cypht (cypht-org#846)
* .env.example added to cypht
- Loading branch information
Showing
20 changed files
with
118 additions
and
1,062 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
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
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,24 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
| [github.com] | ||
| ------------------------------------------------------- | ||
| Constants used for oauth2 communication with github.com | ||
| ------------------------------------------------------- | ||
| | ||
| Once you edit this file, you must move it to the directory defined by | ||
| app_data_dir in your config/app.php file. No need to re-run the | ||
| config_gen.php script. | ||
| | ||
| SECURITY ALERT ! MAKE SURE THAT THIS FILE IS NOT ACCESSIBLE BY THE BROWSER ! | ||
*/ | ||
'github' => [ | ||
'client_id' => env('GITHUB_CLIENT_ID', ''), | ||
'client_secret' => env('GITHUB_CLIENT_SECRET', ''), | ||
'redirect_uri' => env('GITHUB_REDIRECT_URI', ''), | ||
'auth_url' => env('GITHUB_AUTH_URL', 'https://github.com/login/oauth/authorize'), | ||
'token_url' => env('GITHUB_TOKEN_URL', 'https://github.com/login/oauth/access_token'), | ||
], | ||
|
||
]; |
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,24 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
| ----------------------------------- | ||
| Constants used for google recaptcha | ||
| ----------------------------------- | ||
| | ||
| Once you edit this file, you must move it to the directory defined by | ||
| app_data_dir in your config/app.php file. No need to re-run the | ||
| config_gen.php script. | ||
| | ||
| SECURITY ALERT ! MAKE SURE THAT THIS FILE IS NOT ACCESSIBLE BY THE BROWSER ! | ||
| | ||
*/ | ||
'recaptcha' => [ | ||
/* Client secret for the recaptcha admin */ | ||
'secret' => env('RECAPTCHA_SECRET', ''), | ||
|
||
/* Site key from the recaptcha admin */ | ||
'site_key' => env('RECAPTCHA_SITE_KEY', '') | ||
|
||
], | ||
]; |
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 @@ | ||
<?php | ||
|
||
return [ | ||
/* | ||
| [wordpress.com] | ||
| ---------------------------------------------------------- | ||
| Constants used for oauth2 communication with WordPress.com | ||
| ---------------------------------------------------------- | ||
| | ||
| Once you edit this file, you must move it to the directory defined by | ||
| app_data_dir in your config/app.php file. No need to re-run the | ||
| config_gen.php script. | ||
| | ||
| SECURITY ALERT ! MAKE SURE THAT THIS FILE IS NOT ACCESSIBLE BY THE BROWSER ! | ||
*/ | ||
|
||
//[wordpress] | ||
'wordpress' => [ | ||
'client_id' => env('WORDPRESS_CLIENT_ID', ''), | ||
'client_secret' => env('WORDPRESS_CLIENT_SECRET', ''), | ||
'client_uri' => env('WORDPRESS_CLIENT_URI', '') | ||
], | ||
]; |
Oops, something went wrong.