Skip to content

Commit

Permalink
remove matice generations
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiritin committed Jan 25, 2024
1 parent 5bcaea5 commit 87ad353
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 277 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@ RUN composer install --no-dev --optimize-autoloader \
&& chmod 777 -R bootstrap storage \
&& rm -rf .env bootstrap/cache/*.php auth.json \
&& chown -R www-data:www-data /app \
&& rm -rf ~/.composer
&& rm -rf ~/.composer \
&& php artisan matice:generate
CMD sh -c "php artisan octane:start --host=0.0.0.0 --port=80"
259 changes: 0 additions & 259 deletions resources/assets/js/matice_translations.js

This file was deleted.

32 changes: 15 additions & 17 deletions resources/views/app.blade.php
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>Eurofurence Identity</title>
<title inertia>{{ config('app.name', 'Laravel') }}</title>
<link rel="icon" type="image/svg" href="/favicon.svg">
@translations

<!-- Favicon -->
<link rel="icon" type="image/svg" href="/favicon.svg">

<!-- Scripts -->
@routes
@translations

{{ Vite::useBuildDirectory('build')->withEntryPoints(['resources/js/app.js']) }}
</head>
<body class="font-sans antialiased">
@inertia
</body>
<!-- Scripts -->
@routes
@vite(['resources/js/app.js', "resources/js/Pages/{$page['component']}.vue"])
@inertiaHead
</head>
<body class="font-sans antialiased bg-gray-50">
@inertia
</body>
</html>

0 comments on commit 87ad353

Please sign in to comment.