add beike api url

This commit is contained in:
Edward Yang 2022-09-26 11:48:40 +08:00
parent c91cf02915
commit fc21a56188
3 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@ APP_TIMEZONE=PRC
APP_FORCE_HTTPS=false
ASSET_URL=
BEIKE_API_URL=https://beikeshop.com
LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

View File

@ -10,6 +10,7 @@
*/
return [
'api_url' => env('BEIKE_API_URL', 'https://beikeshop.com'),
'version' => '1.0.3',
'build' => '20220920',
];

View File

@ -109,6 +109,7 @@ class EnvironmentManager
'APP_DEBUG=false' . "\n" .
'APP_LOG_LEVEL=' . $request->app_log_level . "\n" .
'APP_URL=' . $appUrl . "\n\n" .
'BEIKE_API_URL=https://beikeshop.com' . "\n\n" .
'DB_CONNECTION=' . $request->database_connection . "\n" .
'DB_HOST=' . $request->database_hostname . "\n" .
'DB_PORT=' . $request->database_port . "\n" .