Files
einundzwanzig-portal/config/services.php
2024-09-10 20:29:50 +02:00

60 lines
1.5 KiB
PHP

<?php
return [
'open-ai' => [
'apiKey' => env('OPEN_AI_API_KEY'),
],
'horizon' => [
'secret' => env('HORIZON_SECRET'),
],
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'twitter' => [
'oauth' => 2,
'client_id' => env('TWITTER_CLIENT_ID'),
'client_secret' => env('TWITTER_CLIENT_SECRET'),
'redirect' => env('TWITTER_REDIRECT_URI'),
],
'lnbits' => [
'url' => env('LNBITS_URL'),
'wallet_id' => env('LNBITS_WALLET_ID'),
'read_key' => env('LNBITS_READ_KEY'),
],
'nostr' => [
'privatekey' => env('NOSTR_PRIVATE_KEY'),
],
];