Skip to content

Commit 63a1362

Browse files
committed
wip
1 parent 9a258ca commit 63a1362

12 files changed

Lines changed: 90 additions & 2 deletions

File tree

public/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

public/.htaccess

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<IfModule mod_rewrite.c>
2+
<IfModule mod_negotiation.c>
3+
Options -MultiViews -Indexes
4+
</IfModule>
5+
6+
RewriteEngine On
7+
8+
# Handle Authorization Header
9+
RewriteCond %{HTTP:Authorization} .
10+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
11+
12+
# Handle X-XSRF-Token Header
13+
RewriteCond %{HTTP:x-xsrf-token} .
14+
RewriteRule .* - [E=HTTP_X_XSRF_TOKEN:%{HTTP:X-XSRF-Token}]
15+
16+
# Redirect Trailing Slashes If Not A Folder...
17+
RewriteCond %{REQUEST_FILENAME} !-d
18+
RewriteCond %{REQUEST_URI} (.+)/$
19+
RewriteRule ^ %1 [L,R=301]
20+
21+
# Send Requests To Front Controller...
22+
RewriteCond %{REQUEST_FILENAME} !-d
23+
RewriteCond %{REQUEST_FILENAME} !-f
24+
RewriteRule ^ index.php [L]
25+
</IfModule>

public/favicon.ico

Whitespace-only changes.

public/index.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
use Illuminate\Foundation\Application;
4+
use Illuminate\Http\Request;
5+
6+
define('LARAVEL_START', microtime(true));
7+
8+
// Determine if the application is in maintenance mode...
9+
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
10+
require $maintenance;
11+
}
12+
13+
// Register the Composer autoloader...
14+
require __DIR__.'/../vendor/autoload.php';
15+
16+
// Bootstrap Laravel and handle the request...
17+
/** @var Application $app */
18+
$app = require_once __DIR__.'/../bootstrap/app.php';
19+
20+
$app->handleRequest(Request::capture());

public/robots.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-agent: *
2+
Disallow:

public/vendor/log-viewer/app.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/vendor/log-viewer/app.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*!
2+
* The buffer module from node.js, for the browser.
3+
*
4+
* @author Feross Aboukhadijeh <http://feross.org>
5+
* @license MIT
6+
*/
7+
8+
/*!
9+
* pinia v2.2.2
10+
* (c) 2024 Eduardo San Martin Morote
11+
* @license MIT
12+
*/
13+
14+
/*! #__NO_SIDE_EFFECTS__ */
15+
16+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
17+
18+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
19+
20+
/**
21+
* @license
22+
* Lodash <https://lodash.com/>
23+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
24+
* Released under MIT license <https://lodash.com/license>
25+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
26+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
27+
*/
28+
29+
/**
30+
* @vue/shared v3.4.38
31+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
32+
* @license MIT
33+
**/
1.83 KB
Loading
526 Bytes
Loading

0 commit comments

Comments
 (0)