This commit is contained in:
2026-03-07 19:31:34 -06:00
parent 7086f105aa
commit a5ea7fe0b3
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"
EVEONLINE_CLIENT_ID=replace_this_with_eve_developer_client_id
EVEONLINE_SECRET_KEY=replace_this_with_eve_developer_secret_key
EVEONLINE_CLIENT_SECRET=replace_this_with_eve_developer_secret_key
EVEONLINE_REDIRECT_URL=replace_this_with_eve_developer_redirect_uri
JWT_SECRET=replace_this_with_a_long_random_secret

View File

@@ -37,7 +37,7 @@ return [
'eveonline' => [
'client_id' => env('EVEONLINE_CLIENT_ID'),
'client_secret' => env('EVEONLINE_SECRET_KEY'),
'client_secret' => env('EVEONLINE_CLIENT_SECRET'),
'redirect' => env('EVEONLINE_REDIRECT_URL'),
],