38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Auth token for api calls
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| See https://sentry.io/settings/account/api/auth-tokens/
|
|
|
|
|
*/
|
|
'auth_token' => env('SENTRY_AUTH_TOKEN'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Organisation slug
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'organisation' => env('SENTRY_ORG'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Project
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
'project' => env('SENTRY_PROJECT'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Git repository set in sentry
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| See https://sentry.io/settings/{slug}/repos/
|
|
|
|
|
*/
|
|
'repo' => env('SENTRY_REPO', 'monicahq/monica'),
|
|
];
|