diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index deaff2d0..08c36c04 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -212,6 +212,6 @@ jobs: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} - name: Deploy to production - run: php vendor/bin/vapor deploy production --commit="${GITHUB_SHA}" --message="${GITHUB_REF}" + run: php vendor/bin/vapor deploy api-production --commit="${GITHUB_SHA}" --message="${GITHUB_REF}" env: VAPOR_API_TOKEN: ${{ secrets.VAPOR_API_TOKEN }} diff --git a/.gitignore b/.gitignore index 798f4563..bb797f82 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ /vendor .env .env.production +.env.api-production .env.backup .env.testing .env.dusk.local diff --git a/client/sitemap.js b/client/sitemap.js index 4591fb23..6dc54057 100644 --- a/client/sitemap.js +++ b/client/sitemap.js @@ -1,7 +1,6 @@ import opnformConfig from "./opnform.config.js"; export default { - // exclude all URLs that start with /secret exclude: ['/settings/**', '/subscriptions/**', '/templates/my-templates'], sources: [ opnformConfig.api_url + '/sitemap-urls' diff --git a/config/services.php b/config/services.php index 7e2b9d16..ad73b8b0 100644 --- a/config/services.php +++ b/config/services.php @@ -63,8 +63,5 @@ return [ 'api_key' => env('APPSUMO_API_KEY'), ], - 'google_analytics_code' => env('GOOGLE_ANALYTICS_CODE'), - 'amplitude_code' => env('AMPLITUDE_CODE'), 'crisp_website_id' => env('CRISP_WEBSITE_ID'), - 'sentry_vue_dsn' => env('SENTRY_VUE_DSN'), ]; diff --git a/resources/views/spa.blade.php b/resources/views/spa.blade.php deleted file mode 100644 index 98e8f782..00000000 --- a/resources/views/spa.blade.php +++ /dev/null @@ -1,74 +0,0 @@ -@php - $config = [ - 'appName' => config('app.name'), - 'app_url' => config('app.url'), - 'locale' => $locale = app()->getLocale(), - 'locales' => config('app.locales'), - 'githubAuth' => config('services.github.client_id'), - 'notion' => [ - 'worker' => config('services.notion.worker'), - ], - 'links' => config('links'), - 'production' => App::isProduction(), - 'hCaptchaSiteKey' => config('services.h_captcha.site_key'), - 'google_analytics_code' => config('services.google_analytics_code'), - 'amplitude_code' => config('services.amplitude_code'), - 'sentry_dsn' => config('services.sentry_vue_dsn'), - 'crisp_website_id' => config('services.crisp_website_id'), - 'ai_features_enabled' => !is_null(config('services.openai.api_key')), - 's3_enabled' => config('filesystems.default') === 's3', - 'paid_plans_enabled' => !is_null(config('cashier.key')), - 'custom_domains_enabled' => config('custom-domains.enabled'), - ]; -@endphp - - -
- - - - @vite('resources/js/app.js') - - - - @if($meta) -