├── .env.example ├── .gitignore ├── README.md ├── backend ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── Http │ │ └── Controllers │ │ │ └── Controller.php │ ├── Jobs │ │ └── LogCreatedUser.php │ ├── Models │ │ └── User.php │ └── Providers │ │ └── AppServiceProvider.php ├── artisan ├── bootstrap │ ├── app.php │ ├── cache │ │ └── .gitignore │ └── providers.php ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── cache.php │ ├── database.php │ ├── filesystems.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ └── session.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 0001_01_01_000000_create_users_table.php │ │ ├── 0001_01_01_000001_create_cache_table.php │ │ └── 0001_01_01_000002_create_jobs_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── resources │ ├── css │ │ └── app.css │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ ├── components │ │ └── main-layout.blade.php │ │ ├── upload.blade.php │ │ └── welcome.blade.php ├── routes │ ├── console.php │ └── web.php ├── scripts │ └── php-fpm-entrypoint ├── storage │ ├── app │ │ ├── .gitignore │ │ ├── private │ │ │ └── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tailwind.config.js ├── tests │ ├── Feature │ │ └── ExampleTest.php │ ├── Pest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── vite.config.js ├── docker-compose.yml └── nginx.conf /.env.example: -------------------------------------------------------------------------------- 1 | POSTGRESQL_DATABASE=db 2 | POSTGRESQL_USERNAME=laravel 3 | POSTGRESQL_PASSWORD=admin123 4 | 5 | REDIS_PASSWORD=redis 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## This repository contains a production ready Laravel application with Docker support. 2 | 3 | Lots of people requested this type of video and I'm happy to help. You don't need to bother with payed templates and spending hundreds of dollars or euros for similar setups. This is a free template you can use that can give you a great starter for your project and you can easily go to production with this. 4 | 5 | ### Features: 6 | - Dockerized Laravel App 7 | - Dockerzied Worker to handle queues 8 | - PostgreSQL Database 9 | - Redis Cache 10 | - Nginx Web Server 11 | - Integrated Asset Bundling with Vite 12 | - Tailwind Integration 13 | - Added Strict mode to prevent N+1 Queries and other deadly performance mistakes 14 | - Automatic Cache optimization and cleaning on each Docker build 15 | - Easy to follow Dockerfile and setup 16 | - File Upload example and File Serving 17 | 18 | Go to the `backend` directory to view the instructions on how to run this. 19 | 20 | Don't worry, it's simple. 21 | -------------------------------------------------------------------------------- /backend/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_TIMEZONE=UTC 6 | APP_URL=http://localhost 7 | 8 | APP_LOCALE=en 9 | APP_FALLBACK_LOCALE=en 10 | APP_FAKER_LOCALE=en_US 11 | 12 | APP_MAINTENANCE_DRIVER=file 13 | # APP_MAINTENANCE_STORE=database 14 | 15 | PHP_CLI_SERVER_WORKERS=4 16 | 17 | BCRYPT_ROUNDS=12 18 | 19 | LOG_CHANNEL=stack 20 | LOG_STACK=single 21 | LOG_DEPRECATIONS_CHANNEL=null 22 | LOG_LEVEL=debug 23 | 24 | DB_CONNECTION=pgsql 25 | DB_HOST=127.0.0.1 26 | DB_PORT=5432 27 | DB_DATABASE=backend 28 | DB_USERNAME=root 29 | DB_PASSWORD= 30 | 31 | SESSION_DRIVER=database 32 | SESSION_LIFETIME=120 33 | SESSION_ENCRYPT=false 34 | SESSION_PATH=/ 35 | SESSION_DOMAIN=null 36 | 37 | BROADCAST_CONNECTION=log 38 | FILESYSTEM_DISK=local 39 | QUEUE_CONNECTION=database 40 | 41 | CACHE_STORE=database 42 | CACHE_PREFIX= 43 | 44 | MEMCACHED_HOST=127.0.0.1 45 | 46 | REDIS_CLIENT=phpredis 47 | REDIS_HOST=127.0.0.1 48 | REDIS_PASSWORD=null 49 | REDIS_PORT=6379 50 | 51 | MAIL_MAILER=log 52 | MAIL_SCHEME=null 53 | MAIL_HOST=127.0.0.1 54 | MAIL_PORT=2525 55 | MAIL_USERNAME=null 56 | MAIL_PASSWORD=null 57 | MAIL_FROM_ADDRESS="hello@example.com" 58 | MAIL_FROM_NAME="${APP_NAME}" 59 | 60 | AWS_ACCESS_KEY_ID= 61 | AWS_SECRET_ACCESS_KEY= 62 | AWS_DEFAULT_REGION=us-east-1 63 | AWS_BUCKET= 64 | AWS_USE_PATH_STYLE_ENDPOINT=false 65 | 66 | VITE_APP_NAME="${APP_NAME}" 67 | -------------------------------------------------------------------------------- /backend/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | /.phpunit.cache 2 | /node_modules 3 | /public/build 4 | /public/hot 5 | /public/storage 6 | /storage/*.key 7 | /storage/pail 8 | /vendor 9 | .env 10 | .env.backup 11 | .env.production 12 | .phpactor.json 13 | .phpunit.result.cache 14 | Homestead.json 15 | Homestead.yaml 16 | npm-debug.log 17 | yarn-error.log 18 | /auth.json 19 | /.fleet 20 | /.idea 21 | /.nova 22 | /.vscode 23 | /.zed 24 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM php:8.3.11-fpm 2 | 3 | # Update package list and install dependencies 4 | RUN apt-get update && apt-get install -y \ 5 | libzip-dev \ 6 | libpng-dev \ 7 | postgresql-client \ 8 | libpq-dev \ 9 | nodejs \ 10 | npm \ 11 | && apt-get clean \ 12 | && rm -rf /var/lib/apt/lists/* 13 | 14 | # Install Composer 15 | COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer 16 | 17 | ENV COMPOSER_ALLOW_SUPERUSER=1 18 | 19 | # Install required packages 20 | RUN docker-php-ext-install pdo pgsql pdo_pgsql gd bcmath zip \ 21 | && pecl install redis \ 22 | && docker-php-ext-enable redis 23 | 24 | WORKDIR /usr/share/nginx/html/ 25 | 26 | # Copy the codebase 27 | COPY . ./ 28 | 29 | # Run composer install for production and give permissions 30 | RUN sed 's_@php artisan package:discover_/bin/true_;' -i composer.json \ 31 | && composer install --ignore-platform-req=php --no-dev --optimize-autoloader \ 32 | && composer clear-cache \ 33 | && php artisan package:discover --ansi \ 34 | && chmod -R 775 storage \ 35 | && chown -R www-data:www-data storage \ 36 | && mkdir -p storage/framework/sessions storage/framework/views storage/framework/cache 37 | 38 | # Copy entrypoint 39 | COPY ./scripts/php-fpm-entrypoint /usr/local/bin/php-entrypoint 40 | 41 | # Give permisisons to everything in bin/ 42 | RUN chmod a+x /usr/local/bin/* 43 | 44 | ENTRYPOINT ["/usr/local/bin/php-entrypoint"] 45 | 46 | CMD ["php-fpm"] 47 | 48 | -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | ### Prerequisites: 2 | - [Docker](https://www.docker.com/) 3 | - [Install Laravel](https://laravel.com/docs/11.x/installation#creating-a-laravel-project) 4 | - [NodeJS](https://nodejs.org/en) 5 | 6 | --- 7 | 8 | ### Local Development 9 | When you want to develop locally you will run the Laravel app and connect to your Dockerized database and redis. 10 | 11 | 1. Clone the repository 12 | 2. In the root of the project copy `.env.example` to `.env` 13 | > cp .env.example .env 14 | 3. Set the variables you wish for DB and REDIS (check the .env.example file) 15 | 4. Go to the `backend` directory 16 | > cd backend 17 | 5. Install PHP dependencies 18 | > composer install 19 | 6. Install Node.js dependencies 20 | > npm install 21 | 7. Copy `.env.example` to `.env` 22 | > cp .env.example .env 23 | 8. Change the DB and Redis ENV variables to match the ones from the root of the project (same username, database and password) 24 | 9. Change the `DB_HOST` and `REDIS_HOST` env variable to `127.0.0.1` when developing locally 25 | 10. Run the migrations 26 | > php artisan migrate 27 | 11. Run the Laravel app 28 | > php artisan serve 29 | 12. Run vite (You can skip this step if you are only using this for an API) 30 | > npm run dev 31 | 32 | --- 33 | 34 | ### Docker environment 35 | When you're finished with the development to run the app with Docker to the following 36 | 1. Change the `DB_HOST` env variable to `db` (db is the container service name) 37 | 2. Change the `REDIS_HOST` env variable to `redis` (redis is the container service name) 38 | 3. Build the containers 39 | > docker compose up --build --detach 40 | 4. Go to `http://localhost` 41 | 42 | ### Going to production! 43 | There are minimal changes needed when going to production. 44 | 45 | You should change the nginx.conf to match your website URL and add SSL so that you can have an encrypted connection (HTTPS). Always USE PORT 443. 46 | 47 | If you plan on using Laravel only for the API you don't need to bother with Vite so you can remove everything related to that. That means removing node, npm and running `npm run build` in the `php-fpm-entrypoint` file. 48 | 49 | Some minimal changes might be required for larger file uploads. 50 | -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | */ 13 | use HasFactory, Notifiable; 14 | 15 | /** 16 | * The attributes that are mass assignable. 17 | * 18 | * @var list 19 | */ 20 | protected $fillable = [ 21 | 'name', 22 | 'email', 23 | 'password', 24 | ]; 25 | 26 | /** 27 | * The attributes that should be hidden for serialization. 28 | * 29 | * @var list 30 | */ 31 | protected $hidden = [ 32 | 'password', 33 | 'remember_token', 34 | ]; 35 | 36 | /** 37 | * Get the attributes that should be cast. 38 | * 39 | * @return array 40 | */ 41 | protected function casts(): array 42 | { 43 | return [ 44 | 'email_verified_at' => 'datetime', 45 | 'password' => 'hashed', 46 | ]; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | handleCommand(new ArgvInput); 14 | 15 | exit($status); 16 | -------------------------------------------------------------------------------- /backend/bootstrap/app.php: -------------------------------------------------------------------------------- 1 | withRouting( 9 | web: __DIR__.'/../routes/web.php', 10 | commands: __DIR__.'/../routes/console.php', 11 | health: '/up', 12 | ) 13 | ->withMiddleware(function (Middleware $middleware) { 14 | // 15 | }) 16 | ->withExceptions(function (Exceptions $exceptions) { 17 | // 18 | })->create(); 19 | -------------------------------------------------------------------------------- /backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/bootstrap/providers.php: -------------------------------------------------------------------------------- 1 | env('APP_NAME', 'Laravel'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Application Environment 21 | |-------------------------------------------------------------------------- 22 | | 23 | | This value determines the "environment" your application is currently 24 | | running in. This may determine how you prefer to configure various 25 | | services the application utilizes. Set this in your ".env" file. 26 | | 27 | */ 28 | 29 | 'env' => env('APP_ENV', 'production'), 30 | 31 | /* 32 | |-------------------------------------------------------------------------- 33 | | Application Debug Mode 34 | |-------------------------------------------------------------------------- 35 | | 36 | | When your application is in debug mode, detailed error messages with 37 | | stack traces will be shown on every error that occurs within your 38 | | application. If disabled, a simple generic error page is shown. 39 | | 40 | */ 41 | 42 | 'debug' => (bool) env('APP_DEBUG', false), 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Application URL 47 | |-------------------------------------------------------------------------- 48 | | 49 | | This URL is used by the console to properly generate URLs when using 50 | | the Artisan command line tool. You should set this to the root of 51 | | the application so that it's available within Artisan commands. 52 | | 53 | */ 54 | 55 | 'url' => env('APP_URL', 'http://localhost'), 56 | 57 | /* 58 | |-------------------------------------------------------------------------- 59 | | Application Timezone 60 | |-------------------------------------------------------------------------- 61 | | 62 | | Here you may specify the default timezone for your application, which 63 | | will be used by the PHP date and date-time functions. The timezone 64 | | is set to "UTC" by default as it is suitable for most use cases. 65 | | 66 | */ 67 | 68 | 'timezone' => env('APP_TIMEZONE', 'UTC'), 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Application Locale Configuration 73 | |-------------------------------------------------------------------------- 74 | | 75 | | The application locale determines the default locale that will be used 76 | | by Laravel's translation / localization methods. This option can be 77 | | set to any locale for which you plan to have translation strings. 78 | | 79 | */ 80 | 81 | 'locale' => env('APP_LOCALE', 'en'), 82 | 83 | 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'), 84 | 85 | 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'), 86 | 87 | /* 88 | |-------------------------------------------------------------------------- 89 | | Encryption Key 90 | |-------------------------------------------------------------------------- 91 | | 92 | | This key is utilized by Laravel's encryption services and should be set 93 | | to a random, 32 character string to ensure that all encrypted values 94 | | are secure. You should do this prior to deploying the application. 95 | | 96 | */ 97 | 98 | 'cipher' => 'AES-256-CBC', 99 | 100 | 'key' => env('APP_KEY'), 101 | 102 | 'previous_keys' => [ 103 | ...array_filter( 104 | explode(',', env('APP_PREVIOUS_KEYS', '')) 105 | ), 106 | ], 107 | 108 | /* 109 | |-------------------------------------------------------------------------- 110 | | Maintenance Mode Driver 111 | |-------------------------------------------------------------------------- 112 | | 113 | | These configuration options determine the driver used to determine and 114 | | manage Laravel's "maintenance mode" status. The "cache" driver will 115 | | allow maintenance mode to be controlled across multiple machines. 116 | | 117 | | Supported drivers: "file", "cache" 118 | | 119 | */ 120 | 121 | 'maintenance' => [ 122 | 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'), 123 | 'store' => env('APP_MAINTENANCE_STORE', 'database'), 124 | ], 125 | 126 | ]; 127 | -------------------------------------------------------------------------------- /backend/config/auth.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'guard' => env('AUTH_GUARD', 'web'), 18 | 'passwords' => env('AUTH_PASSWORD_BROKER', 'users'), 19 | ], 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Authentication Guards 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Next, you may define every authentication guard for your application. 27 | | Of course, a great default configuration has been defined for you 28 | | which utilizes session storage plus the Eloquent user provider. 29 | | 30 | | All authentication guards have a user provider, which defines how the 31 | | users are actually retrieved out of your database or other storage 32 | | system used by the application. Typically, Eloquent is utilized. 33 | | 34 | | Supported: "session" 35 | | 36 | */ 37 | 38 | 'guards' => [ 39 | 'web' => [ 40 | 'driver' => 'session', 41 | 'provider' => 'users', 42 | ], 43 | ], 44 | 45 | /* 46 | |-------------------------------------------------------------------------- 47 | | User Providers 48 | |-------------------------------------------------------------------------- 49 | | 50 | | All authentication guards have a user provider, which defines how the 51 | | users are actually retrieved out of your database or other storage 52 | | system used by the application. Typically, Eloquent is utilized. 53 | | 54 | | If you have multiple user tables or models you may configure multiple 55 | | providers to represent the model / table. These providers may then 56 | | be assigned to any extra authentication guards you have defined. 57 | | 58 | | Supported: "database", "eloquent" 59 | | 60 | */ 61 | 62 | 'providers' => [ 63 | 'users' => [ 64 | 'driver' => 'eloquent', 65 | 'model' => env('AUTH_MODEL', App\Models\User::class), 66 | ], 67 | 68 | // 'users' => [ 69 | // 'driver' => 'database', 70 | // 'table' => 'users', 71 | // ], 72 | ], 73 | 74 | /* 75 | |-------------------------------------------------------------------------- 76 | | Resetting Passwords 77 | |-------------------------------------------------------------------------- 78 | | 79 | | These configuration options specify the behavior of Laravel's password 80 | | reset functionality, including the table utilized for token storage 81 | | and the user provider that is invoked to actually retrieve users. 82 | | 83 | | The expiry time is the number of minutes that each reset token will be 84 | | considered valid. This security feature keeps tokens short-lived so 85 | | they have less time to be guessed. You may change this as needed. 86 | | 87 | | The throttle setting is the number of seconds a user must wait before 88 | | generating more password reset tokens. This prevents the user from 89 | | quickly generating a very large amount of password reset tokens. 90 | | 91 | */ 92 | 93 | 'passwords' => [ 94 | 'users' => [ 95 | 'provider' => 'users', 96 | 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 97 | 'expire' => 60, 98 | 'throttle' => 60, 99 | ], 100 | ], 101 | 102 | /* 103 | |-------------------------------------------------------------------------- 104 | | Password Confirmation Timeout 105 | |-------------------------------------------------------------------------- 106 | | 107 | | Here you may define the amount of seconds before a password confirmation 108 | | window expires and users are asked to re-enter their password via the 109 | | confirmation screen. By default, the timeout lasts for three hours. 110 | | 111 | */ 112 | 113 | 'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800), 114 | 115 | ]; 116 | -------------------------------------------------------------------------------- /backend/config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_STORE', 'database'), 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Cache Stores 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Here you may define all of the cache "stores" for your application as 26 | | well as their drivers. You may even define multiple stores for the 27 | | same cache driver to group types of items stored in your caches. 28 | | 29 | | Supported drivers: "array", "database", "file", "memcached", 30 | | "redis", "dynamodb", "octane", "null" 31 | | 32 | */ 33 | 34 | 'stores' => [ 35 | 36 | 'array' => [ 37 | 'driver' => 'array', 38 | 'serialize' => false, 39 | ], 40 | 41 | 'database' => [ 42 | 'driver' => 'database', 43 | 'connection' => env('DB_CACHE_CONNECTION'), 44 | 'table' => env('DB_CACHE_TABLE', 'cache'), 45 | 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), 46 | 'lock_table' => env('DB_CACHE_LOCK_TABLE'), 47 | ], 48 | 49 | 'file' => [ 50 | 'driver' => 'file', 51 | 'path' => storage_path('framework/cache/data'), 52 | 'lock_path' => storage_path('framework/cache/data'), 53 | ], 54 | 55 | 'memcached' => [ 56 | 'driver' => 'memcached', 57 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), 58 | 'sasl' => [ 59 | env('MEMCACHED_USERNAME'), 60 | env('MEMCACHED_PASSWORD'), 61 | ], 62 | 'options' => [ 63 | // Memcached::OPT_CONNECT_TIMEOUT => 2000, 64 | ], 65 | 'servers' => [ 66 | [ 67 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 68 | 'port' => env('MEMCACHED_PORT', 11211), 69 | 'weight' => 100, 70 | ], 71 | ], 72 | ], 73 | 74 | 'redis' => [ 75 | 'driver' => 'redis', 76 | 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 77 | 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), 78 | ], 79 | 80 | 'dynamodb' => [ 81 | 'driver' => 'dynamodb', 82 | 'key' => env('AWS_ACCESS_KEY_ID'), 83 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 84 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 85 | 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), 86 | 'endpoint' => env('DYNAMODB_ENDPOINT'), 87 | ], 88 | 89 | 'octane' => [ 90 | 'driver' => 'octane', 91 | ], 92 | 93 | ], 94 | 95 | /* 96 | |-------------------------------------------------------------------------- 97 | | Cache Key Prefix 98 | |-------------------------------------------------------------------------- 99 | | 100 | | When utilizing the APC, database, memcached, Redis, and DynamoDB cache 101 | | stores, there might be other applications using the same cache. For 102 | | that reason, you may prefix every cache key to avoid collisions. 103 | | 104 | */ 105 | 106 | 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), 107 | 108 | ]; 109 | -------------------------------------------------------------------------------- /backend/config/database.php: -------------------------------------------------------------------------------- 1 | env('DB_CONNECTION', 'sqlite'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Database Connections 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Below are all of the database connections defined for your application. 27 | | An example configuration is provided for each database system which 28 | | is supported by Laravel. You're free to add / remove connections. 29 | | 30 | */ 31 | 32 | 'connections' => [ 33 | 34 | 'sqlite' => [ 35 | 'driver' => 'sqlite', 36 | 'url' => env('DB_URL'), 37 | 'database' => env('DB_DATABASE', database_path('database.sqlite')), 38 | 'prefix' => '', 39 | 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true), 40 | 'busy_timeout' => null, 41 | 'journal_mode' => null, 42 | 'synchronous' => null, 43 | ], 44 | 45 | 'mysql' => [ 46 | 'driver' => 'mysql', 47 | 'url' => env('DB_URL'), 48 | 'host' => env('DB_HOST', '127.0.0.1'), 49 | 'port' => env('DB_PORT', '3306'), 50 | 'database' => env('DB_DATABASE', 'laravel'), 51 | 'username' => env('DB_USERNAME', 'root'), 52 | 'password' => env('DB_PASSWORD', ''), 53 | 'unix_socket' => env('DB_SOCKET', ''), 54 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 55 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 56 | 'prefix' => '', 57 | 'prefix_indexes' => true, 58 | 'strict' => true, 59 | 'engine' => null, 60 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 61 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 62 | ]) : [], 63 | ], 64 | 65 | 'mariadb' => [ 66 | 'driver' => 'mariadb', 67 | 'url' => env('DB_URL'), 68 | 'host' => env('DB_HOST', '127.0.0.1'), 69 | 'port' => env('DB_PORT', '3306'), 70 | 'database' => env('DB_DATABASE', 'laravel'), 71 | 'username' => env('DB_USERNAME', 'root'), 72 | 'password' => env('DB_PASSWORD', ''), 73 | 'unix_socket' => env('DB_SOCKET', ''), 74 | 'charset' => env('DB_CHARSET', 'utf8mb4'), 75 | 'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'), 76 | 'prefix' => '', 77 | 'prefix_indexes' => true, 78 | 'strict' => true, 79 | 'engine' => null, 80 | 'options' => extension_loaded('pdo_mysql') ? array_filter([ 81 | PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'), 82 | ]) : [], 83 | ], 84 | 85 | 'pgsql' => [ 86 | 'driver' => 'pgsql', 87 | 'url' => env('DB_URL'), 88 | 'host' => env('DB_HOST', '127.0.0.1'), 89 | 'port' => env('DB_PORT', '5432'), 90 | 'database' => env('DB_DATABASE', 'laravel'), 91 | 'username' => env('DB_USERNAME', 'root'), 92 | 'password' => env('DB_PASSWORD', ''), 93 | 'charset' => env('DB_CHARSET', 'utf8'), 94 | 'prefix' => '', 95 | 'prefix_indexes' => true, 96 | 'search_path' => 'public', 97 | 'sslmode' => 'prefer', 98 | ], 99 | 100 | 'sqlsrv' => [ 101 | 'driver' => 'sqlsrv', 102 | 'url' => env('DB_URL'), 103 | 'host' => env('DB_HOST', 'localhost'), 104 | 'port' => env('DB_PORT', '1433'), 105 | 'database' => env('DB_DATABASE', 'laravel'), 106 | 'username' => env('DB_USERNAME', 'root'), 107 | 'password' => env('DB_PASSWORD', ''), 108 | 'charset' => env('DB_CHARSET', 'utf8'), 109 | 'prefix' => '', 110 | 'prefix_indexes' => true, 111 | // 'encrypt' => env('DB_ENCRYPT', 'yes'), 112 | // 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'), 113 | ], 114 | 115 | ], 116 | 117 | /* 118 | |-------------------------------------------------------------------------- 119 | | Migration Repository Table 120 | |-------------------------------------------------------------------------- 121 | | 122 | | This table keeps track of all the migrations that have already run for 123 | | your application. Using this information, we can determine which of 124 | | the migrations on disk haven't actually been run on the database. 125 | | 126 | */ 127 | 128 | 'migrations' => [ 129 | 'table' => 'migrations', 130 | 'update_date_on_publish' => true, 131 | ], 132 | 133 | /* 134 | |-------------------------------------------------------------------------- 135 | | Redis Databases 136 | |-------------------------------------------------------------------------- 137 | | 138 | | Redis is an open source, fast, and advanced key-value store that also 139 | | provides a richer body of commands than a typical key-value system 140 | | such as Memcached. You may define your connection settings here. 141 | | 142 | */ 143 | 144 | 'redis' => [ 145 | 146 | 'client' => env('REDIS_CLIENT', 'phpredis'), 147 | 148 | 'options' => [ 149 | 'cluster' => env('REDIS_CLUSTER', 'redis'), 150 | 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'), 151 | ], 152 | 153 | 'default' => [ 154 | 'url' => env('REDIS_URL'), 155 | 'host' => env('REDIS_HOST', '127.0.0.1'), 156 | 'username' => env('REDIS_USERNAME'), 157 | 'password' => env('REDIS_PASSWORD'), 158 | 'port' => env('REDIS_PORT', '6379'), 159 | 'database' => env('REDIS_DB', '0'), 160 | ], 161 | 162 | 'cache' => [ 163 | 'url' => env('REDIS_URL'), 164 | 'host' => env('REDIS_HOST', '127.0.0.1'), 165 | 'username' => env('REDIS_USERNAME'), 166 | 'password' => env('REDIS_PASSWORD'), 167 | 'port' => env('REDIS_PORT', '6379'), 168 | 'database' => env('REDIS_CACHE_DB', '1'), 169 | ], 170 | 171 | ], 172 | 173 | ]; 174 | -------------------------------------------------------------------------------- /backend/config/filesystems.php: -------------------------------------------------------------------------------- 1 | env('FILESYSTEM_DISK', 'local'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Filesystem Disks 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Below you may configure as many filesystem disks as necessary, and you 24 | | may even configure multiple disks for the same driver. Examples for 25 | | most supported storage drivers are configured here for reference. 26 | | 27 | | Supported drivers: "local", "ftp", "sftp", "s3" 28 | | 29 | */ 30 | 31 | 'disks' => [ 32 | 33 | 'local' => [ 34 | 'driver' => 'local', 35 | 'root' => storage_path('app/private'), 36 | 'serve' => true, 37 | 'throw' => false, 38 | 'report' => false, 39 | ], 40 | 41 | 'public' => [ 42 | 'driver' => 'local', 43 | 'root' => storage_path('app/public'), 44 | 'url' => env('APP_URL').'/storage', 45 | 'visibility' => 'public', 46 | 'throw' => false, 47 | 'report' => false, 48 | ], 49 | 50 | 's3' => [ 51 | 'driver' => 's3', 52 | 'key' => env('AWS_ACCESS_KEY_ID'), 53 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 54 | 'region' => env('AWS_DEFAULT_REGION'), 55 | 'bucket' => env('AWS_BUCKET'), 56 | 'url' => env('AWS_URL'), 57 | 'endpoint' => env('AWS_ENDPOINT'), 58 | 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 59 | 'throw' => false, 60 | 'report' => false, 61 | ], 62 | 63 | ], 64 | 65 | /* 66 | |-------------------------------------------------------------------------- 67 | | Symbolic Links 68 | |-------------------------------------------------------------------------- 69 | | 70 | | Here you may configure the symbolic links that will be created when the 71 | | `storage:link` Artisan command is executed. The array keys should be 72 | | the locations of the links and the values should be their targets. 73 | | 74 | */ 75 | 76 | 'links' => [ 77 | public_path('storage') => storage_path('app/public'), 78 | ], 79 | 80 | ]; 81 | -------------------------------------------------------------------------------- /backend/config/logging.php: -------------------------------------------------------------------------------- 1 | env('LOG_CHANNEL', 'stack'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Deprecations Log Channel 26 | |-------------------------------------------------------------------------- 27 | | 28 | | This option controls the log channel that should be used to log warnings 29 | | regarding deprecated PHP and library features. This allows you to get 30 | | your application ready for upcoming major versions of dependencies. 31 | | 32 | */ 33 | 34 | 'deprecations' => [ 35 | 'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'), 36 | 'trace' => env('LOG_DEPRECATIONS_TRACE', false), 37 | ], 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Log Channels 42 | |-------------------------------------------------------------------------- 43 | | 44 | | Here you may configure the log channels for your application. Laravel 45 | | utilizes the Monolog PHP logging library, which includes a variety 46 | | of powerful log handlers and formatters that you're free to use. 47 | | 48 | | Available drivers: "single", "daily", "slack", "syslog", 49 | | "errorlog", "monolog", "custom", "stack" 50 | | 51 | */ 52 | 53 | 'channels' => [ 54 | 55 | 'stack' => [ 56 | 'driver' => 'stack', 57 | 'channels' => explode(',', env('LOG_STACK', 'single')), 58 | 'ignore_exceptions' => false, 59 | ], 60 | 61 | 'single' => [ 62 | 'driver' => 'single', 63 | 'path' => storage_path('logs/laravel.log'), 64 | 'level' => env('LOG_LEVEL', 'debug'), 65 | 'replace_placeholders' => true, 66 | ], 67 | 68 | 'daily' => [ 69 | 'driver' => 'daily', 70 | 'path' => storage_path('logs/laravel.log'), 71 | 'level' => env('LOG_LEVEL', 'debug'), 72 | 'days' => env('LOG_DAILY_DAYS', 14), 73 | 'replace_placeholders' => true, 74 | ], 75 | 76 | 'slack' => [ 77 | 'driver' => 'slack', 78 | 'url' => env('LOG_SLACK_WEBHOOK_URL'), 79 | 'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'), 80 | 'emoji' => env('LOG_SLACK_EMOJI', ':boom:'), 81 | 'level' => env('LOG_LEVEL', 'critical'), 82 | 'replace_placeholders' => true, 83 | ], 84 | 85 | 'papertrail' => [ 86 | 'driver' => 'monolog', 87 | 'level' => env('LOG_LEVEL', 'debug'), 88 | 'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class), 89 | 'handler_with' => [ 90 | 'host' => env('PAPERTRAIL_URL'), 91 | 'port' => env('PAPERTRAIL_PORT'), 92 | 'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'), 93 | ], 94 | 'processors' => [PsrLogMessageProcessor::class], 95 | ], 96 | 97 | 'stderr' => [ 98 | 'driver' => 'monolog', 99 | 'level' => env('LOG_LEVEL', 'debug'), 100 | 'handler' => StreamHandler::class, 101 | 'formatter' => env('LOG_STDERR_FORMATTER'), 102 | 'with' => [ 103 | 'stream' => 'php://stderr', 104 | ], 105 | 'processors' => [PsrLogMessageProcessor::class], 106 | ], 107 | 108 | 'syslog' => [ 109 | 'driver' => 'syslog', 110 | 'level' => env('LOG_LEVEL', 'debug'), 111 | 'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER), 112 | 'replace_placeholders' => true, 113 | ], 114 | 115 | 'errorlog' => [ 116 | 'driver' => 'errorlog', 117 | 'level' => env('LOG_LEVEL', 'debug'), 118 | 'replace_placeholders' => true, 119 | ], 120 | 121 | 'null' => [ 122 | 'driver' => 'monolog', 123 | 'handler' => NullHandler::class, 124 | ], 125 | 126 | 'emergency' => [ 127 | 'path' => storage_path('logs/laravel.log'), 128 | ], 129 | 130 | ], 131 | 132 | ]; 133 | -------------------------------------------------------------------------------- /backend/config/mail.php: -------------------------------------------------------------------------------- 1 | env('MAIL_MAILER', 'log'), 18 | 19 | /* 20 | |-------------------------------------------------------------------------- 21 | | Mailer Configurations 22 | |-------------------------------------------------------------------------- 23 | | 24 | | Here you may configure all of the mailers used by your application plus 25 | | their respective settings. Several examples have been configured for 26 | | you and you are free to add your own as your application requires. 27 | | 28 | | Laravel supports a variety of mail "transport" drivers that can be used 29 | | when delivering an email. You may specify which one you're using for 30 | | your mailers below. You may also add additional mailers if needed. 31 | | 32 | | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", 33 | | "postmark", "resend", "log", "array", 34 | | "failover", "roundrobin" 35 | | 36 | */ 37 | 38 | 'mailers' => [ 39 | 40 | 'smtp' => [ 41 | 'transport' => 'smtp', 42 | 'scheme' => env('MAIL_SCHEME'), 43 | 'url' => env('MAIL_URL'), 44 | 'host' => env('MAIL_HOST', '127.0.0.1'), 45 | 'port' => env('MAIL_PORT', 2525), 46 | 'username' => env('MAIL_USERNAME'), 47 | 'password' => env('MAIL_PASSWORD'), 48 | 'timeout' => null, 49 | 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)), 50 | ], 51 | 52 | 'ses' => [ 53 | 'transport' => 'ses', 54 | ], 55 | 56 | 'postmark' => [ 57 | 'transport' => 'postmark', 58 | // 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'), 59 | // 'client' => [ 60 | // 'timeout' => 5, 61 | // ], 62 | ], 63 | 64 | 'resend' => [ 65 | 'transport' => 'resend', 66 | ], 67 | 68 | 'sendmail' => [ 69 | 'transport' => 'sendmail', 70 | 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'), 71 | ], 72 | 73 | 'log' => [ 74 | 'transport' => 'log', 75 | 'channel' => env('MAIL_LOG_CHANNEL'), 76 | ], 77 | 78 | 'array' => [ 79 | 'transport' => 'array', 80 | ], 81 | 82 | 'failover' => [ 83 | 'transport' => 'failover', 84 | 'mailers' => [ 85 | 'smtp', 86 | 'log', 87 | ], 88 | ], 89 | 90 | 'roundrobin' => [ 91 | 'transport' => 'roundrobin', 92 | 'mailers' => [ 93 | 'ses', 94 | 'postmark', 95 | ], 96 | ], 97 | 98 | ], 99 | 100 | /* 101 | |-------------------------------------------------------------------------- 102 | | Global "From" Address 103 | |-------------------------------------------------------------------------- 104 | | 105 | | You may wish for all emails sent by your application to be sent from 106 | | the same address. Here you may specify a name and address that is 107 | | used globally for all emails that are sent by your application. 108 | | 109 | */ 110 | 111 | 'from' => [ 112 | 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), 113 | 'name' => env('MAIL_FROM_NAME', 'Example'), 114 | ], 115 | 116 | ]; 117 | -------------------------------------------------------------------------------- /backend/config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_CONNECTION', 'database'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Queue Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may configure the connection options for every queue backend 24 | | used by your application. An example configuration is provided for 25 | | each backend supported by Laravel. You're also free to add more. 26 | | 27 | | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null" 28 | | 29 | */ 30 | 31 | 'connections' => [ 32 | 33 | 'sync' => [ 34 | 'driver' => 'sync', 35 | ], 36 | 37 | 'database' => [ 38 | 'driver' => 'database', 39 | 'connection' => env('DB_QUEUE_CONNECTION'), 40 | 'table' => env('DB_QUEUE_TABLE', 'jobs'), 41 | 'queue' => env('DB_QUEUE', 'default'), 42 | 'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90), 43 | 'after_commit' => false, 44 | ], 45 | 46 | 'beanstalkd' => [ 47 | 'driver' => 'beanstalkd', 48 | 'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'), 49 | 'queue' => env('BEANSTALKD_QUEUE', 'default'), 50 | 'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90), 51 | 'block_for' => 0, 52 | 'after_commit' => false, 53 | ], 54 | 55 | 'sqs' => [ 56 | 'driver' => 'sqs', 57 | 'key' => env('AWS_ACCESS_KEY_ID'), 58 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 59 | 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'), 60 | 'queue' => env('SQS_QUEUE', 'default'), 61 | 'suffix' => env('SQS_SUFFIX'), 62 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 63 | 'after_commit' => false, 64 | ], 65 | 66 | 'redis' => [ 67 | 'driver' => 'redis', 68 | 'connection' => env('REDIS_QUEUE_CONNECTION', 'default'), 69 | 'queue' => env('REDIS_QUEUE', 'default'), 70 | 'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90), 71 | 'block_for' => null, 72 | 'after_commit' => false, 73 | ], 74 | 75 | ], 76 | 77 | /* 78 | |-------------------------------------------------------------------------- 79 | | Job Batching 80 | |-------------------------------------------------------------------------- 81 | | 82 | | The following options configure the database and table that store job 83 | | batching information. These options can be updated to any database 84 | | connection and table which has been defined by your application. 85 | | 86 | */ 87 | 88 | 'batching' => [ 89 | 'database' => env('DB_CONNECTION', 'sqlite'), 90 | 'table' => 'job_batches', 91 | ], 92 | 93 | /* 94 | |-------------------------------------------------------------------------- 95 | | Failed Queue Jobs 96 | |-------------------------------------------------------------------------- 97 | | 98 | | These options configure the behavior of failed queue job logging so you 99 | | can control how and where failed jobs are stored. Laravel ships with 100 | | support for storing failed jobs in a simple file or in a database. 101 | | 102 | | Supported drivers: "database-uuids", "dynamodb", "file", "null" 103 | | 104 | */ 105 | 106 | 'failed' => [ 107 | 'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'), 108 | 'database' => env('DB_CONNECTION', 'sqlite'), 109 | 'table' => 'failed_jobs', 110 | ], 111 | 112 | ]; 113 | -------------------------------------------------------------------------------- /backend/config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'token' => env('POSTMARK_TOKEN'), 19 | ], 20 | 21 | 'ses' => [ 22 | 'key' => env('AWS_ACCESS_KEY_ID'), 23 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 24 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 25 | ], 26 | 27 | 'resend' => [ 28 | 'key' => env('RESEND_KEY'), 29 | ], 30 | 31 | 'slack' => [ 32 | 'notifications' => [ 33 | 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'), 34 | 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'), 35 | ], 36 | ], 37 | 38 | ]; 39 | -------------------------------------------------------------------------------- /backend/config/session.php: -------------------------------------------------------------------------------- 1 | env('SESSION_DRIVER', 'database'), 22 | 23 | /* 24 | |-------------------------------------------------------------------------- 25 | | Session Lifetime 26 | |-------------------------------------------------------------------------- 27 | | 28 | | Here you may specify the number of minutes that you wish the session 29 | | to be allowed to remain idle before it expires. If you want them 30 | | to expire immediately when the browser is closed then you may 31 | | indicate that via the expire_on_close configuration option. 32 | | 33 | */ 34 | 35 | 'lifetime' => env('SESSION_LIFETIME', 120), 36 | 37 | 'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false), 38 | 39 | /* 40 | |-------------------------------------------------------------------------- 41 | | Session Encryption 42 | |-------------------------------------------------------------------------- 43 | | 44 | | This option allows you to easily specify that all of your session data 45 | | should be encrypted before it's stored. All encryption is performed 46 | | automatically by Laravel and you may use the session like normal. 47 | | 48 | */ 49 | 50 | 'encrypt' => env('SESSION_ENCRYPT', false), 51 | 52 | /* 53 | |-------------------------------------------------------------------------- 54 | | Session File Location 55 | |-------------------------------------------------------------------------- 56 | | 57 | | When utilizing the "file" session driver, the session files are placed 58 | | on disk. The default storage location is defined here; however, you 59 | | are free to provide another location where they should be stored. 60 | | 61 | */ 62 | 63 | 'files' => storage_path('framework/sessions'), 64 | 65 | /* 66 | |-------------------------------------------------------------------------- 67 | | Session Database Connection 68 | |-------------------------------------------------------------------------- 69 | | 70 | | When using the "database" or "redis" session drivers, you may specify a 71 | | connection that should be used to manage these sessions. This should 72 | | correspond to a connection in your database configuration options. 73 | | 74 | */ 75 | 76 | 'connection' => env('SESSION_CONNECTION'), 77 | 78 | /* 79 | |-------------------------------------------------------------------------- 80 | | Session Database Table 81 | |-------------------------------------------------------------------------- 82 | | 83 | | When using the "database" session driver, you may specify the table to 84 | | be used to store sessions. Of course, a sensible default is defined 85 | | for you; however, you're welcome to change this to another table. 86 | | 87 | */ 88 | 89 | 'table' => env('SESSION_TABLE', 'sessions'), 90 | 91 | /* 92 | |-------------------------------------------------------------------------- 93 | | Session Cache Store 94 | |-------------------------------------------------------------------------- 95 | | 96 | | When using one of the framework's cache driven session backends, you may 97 | | define the cache store which should be used to store the session data 98 | | between requests. This must match one of your defined cache stores. 99 | | 100 | | Affects: "apc", "dynamodb", "memcached", "redis" 101 | | 102 | */ 103 | 104 | 'store' => env('SESSION_STORE'), 105 | 106 | /* 107 | |-------------------------------------------------------------------------- 108 | | Session Sweeping Lottery 109 | |-------------------------------------------------------------------------- 110 | | 111 | | Some session drivers must manually sweep their storage location to get 112 | | rid of old sessions from storage. Here are the chances that it will 113 | | happen on a given request. By default, the odds are 2 out of 100. 114 | | 115 | */ 116 | 117 | 'lottery' => [2, 100], 118 | 119 | /* 120 | |-------------------------------------------------------------------------- 121 | | Session Cookie Name 122 | |-------------------------------------------------------------------------- 123 | | 124 | | Here you may change the name of the session cookie that is created by 125 | | the framework. Typically, you should not need to change this value 126 | | since doing so does not grant a meaningful security improvement. 127 | | 128 | */ 129 | 130 | 'cookie' => env( 131 | 'SESSION_COOKIE', 132 | Str::slug(env('APP_NAME', 'laravel'), '_').'_session' 133 | ), 134 | 135 | /* 136 | |-------------------------------------------------------------------------- 137 | | Session Cookie Path 138 | |-------------------------------------------------------------------------- 139 | | 140 | | The session cookie path determines the path for which the cookie will 141 | | be regarded as available. Typically, this will be the root path of 142 | | your application, but you're free to change this when necessary. 143 | | 144 | */ 145 | 146 | 'path' => env('SESSION_PATH', '/'), 147 | 148 | /* 149 | |-------------------------------------------------------------------------- 150 | | Session Cookie Domain 151 | |-------------------------------------------------------------------------- 152 | | 153 | | This value determines the domain and subdomains the session cookie is 154 | | available to. By default, the cookie will be available to the root 155 | | domain and all subdomains. Typically, this shouldn't be changed. 156 | | 157 | */ 158 | 159 | 'domain' => env('SESSION_DOMAIN'), 160 | 161 | /* 162 | |-------------------------------------------------------------------------- 163 | | HTTPS Only Cookies 164 | |-------------------------------------------------------------------------- 165 | | 166 | | By setting this option to true, session cookies will only be sent back 167 | | to the server if the browser has a HTTPS connection. This will keep 168 | | the cookie from being sent to you when it can't be done securely. 169 | | 170 | */ 171 | 172 | 'secure' => env('SESSION_SECURE_COOKIE'), 173 | 174 | /* 175 | |-------------------------------------------------------------------------- 176 | | HTTP Access Only 177 | |-------------------------------------------------------------------------- 178 | | 179 | | Setting this value to true will prevent JavaScript from accessing the 180 | | value of the cookie and the cookie will only be accessible through 181 | | the HTTP protocol. It's unlikely you should disable this option. 182 | | 183 | */ 184 | 185 | 'http_only' => env('SESSION_HTTP_ONLY', true), 186 | 187 | /* 188 | |-------------------------------------------------------------------------- 189 | | Same-Site Cookies 190 | |-------------------------------------------------------------------------- 191 | | 192 | | This option determines how your cookies behave when cross-site requests 193 | | take place, and can be used to mitigate CSRF attacks. By default, we 194 | | will set this value to "lax" to permit secure cross-site requests. 195 | | 196 | | See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value 197 | | 198 | | Supported: "lax", "strict", "none", null 199 | | 200 | */ 201 | 202 | 'same_site' => env('SESSION_SAME_SITE', 'lax'), 203 | 204 | /* 205 | |-------------------------------------------------------------------------- 206 | | Partitioned Cookies 207 | |-------------------------------------------------------------------------- 208 | | 209 | | Setting this value to true will tie the cookie to the top-level site for 210 | | a cross-site context. Partitioned cookies are accepted by the browser 211 | | when flagged "secure" and the Same-Site attribute is set to "none". 212 | | 213 | */ 214 | 215 | 'partitioned' => env('SESSION_PARTITIONED_COOKIE', false), 216 | 217 | ]; 218 | -------------------------------------------------------------------------------- /backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /backend/database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | 11 | */ 12 | class UserFactory extends Factory 13 | { 14 | /** 15 | * The current password being used by the factory. 16 | */ 17 | protected static ?string $password; 18 | 19 | /** 20 | * Define the model's default state. 21 | * 22 | * @return array 23 | */ 24 | public function definition(): array 25 | { 26 | return [ 27 | 'name' => fake()->name(), 28 | 'email' => fake()->unique()->safeEmail(), 29 | 'email_verified_at' => now(), 30 | 'password' => static::$password ??= Hash::make('password'), 31 | 'remember_token' => Str::random(10), 32 | ]; 33 | } 34 | 35 | /** 36 | * Indicate that the model's email address should be unverified. 37 | */ 38 | public function unverified(): static 39 | { 40 | return $this->state(fn (array $attributes) => [ 41 | 'email_verified_at' => null, 42 | ]); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('name'); 17 | $table->string('email')->unique(); 18 | $table->timestamp('email_verified_at')->nullable(); 19 | $table->string('password'); 20 | $table->rememberToken(); 21 | $table->timestamps(); 22 | }); 23 | 24 | Schema::create('password_reset_tokens', function (Blueprint $table) { 25 | $table->string('email')->primary(); 26 | $table->string('token'); 27 | $table->timestamp('created_at')->nullable(); 28 | }); 29 | 30 | Schema::create('sessions', function (Blueprint $table) { 31 | $table->string('id')->primary(); 32 | $table->foreignId('user_id')->nullable()->index(); 33 | $table->string('ip_address', 45)->nullable(); 34 | $table->text('user_agent')->nullable(); 35 | $table->longText('payload'); 36 | $table->integer('last_activity')->index(); 37 | }); 38 | } 39 | 40 | /** 41 | * Reverse the migrations. 42 | */ 43 | public function down(): void 44 | { 45 | Schema::dropIfExists('users'); 46 | Schema::dropIfExists('password_reset_tokens'); 47 | Schema::dropIfExists('sessions'); 48 | } 49 | }; 50 | -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- 1 | string('key')->primary(); 16 | $table->mediumText('value'); 17 | $table->integer('expiration'); 18 | }); 19 | 20 | Schema::create('cache_locks', function (Blueprint $table) { 21 | $table->string('key')->primary(); 22 | $table->string('owner'); 23 | $table->integer('expiration'); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | */ 30 | public function down(): void 31 | { 32 | Schema::dropIfExists('cache'); 33 | Schema::dropIfExists('cache_locks'); 34 | } 35 | }; 36 | -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 16 | $table->string('queue')->index(); 17 | $table->longText('payload'); 18 | $table->unsignedTinyInteger('attempts'); 19 | $table->unsignedInteger('reserved_at')->nullable(); 20 | $table->unsignedInteger('available_at'); 21 | $table->unsignedInteger('created_at'); 22 | }); 23 | 24 | Schema::create('job_batches', function (Blueprint $table) { 25 | $table->string('id')->primary(); 26 | $table->string('name'); 27 | $table->integer('total_jobs'); 28 | $table->integer('pending_jobs'); 29 | $table->integer('failed_jobs'); 30 | $table->longText('failed_job_ids'); 31 | $table->mediumText('options')->nullable(); 32 | $table->integer('cancelled_at')->nullable(); 33 | $table->integer('created_at'); 34 | $table->integer('finished_at')->nullable(); 35 | }); 36 | 37 | Schema::create('failed_jobs', function (Blueprint $table) { 38 | $table->id(); 39 | $table->string('uuid')->unique(); 40 | $table->text('connection'); 41 | $table->text('queue'); 42 | $table->longText('payload'); 43 | $table->longText('exception'); 44 | $table->timestamp('failed_at')->useCurrent(); 45 | }); 46 | } 47 | 48 | /** 49 | * Reverse the migrations. 50 | */ 51 | public function down(): void 52 | { 53 | Schema::dropIfExists('jobs'); 54 | Schema::dropIfExists('job_batches'); 55 | Schema::dropIfExists('failed_jobs'); 56 | } 57 | }; 58 | -------------------------------------------------------------------------------- /backend/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | create(); 17 | 18 | User::factory()->create([ 19 | 'name' => 'Test User', 20 | 'email' => 'test@example.com', 21 | ]); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "backend", 3 | "lockfileVersion": 3, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "dependencies": { 8 | "@tailwindcss/vite": "^4.0.0" 9 | }, 10 | "devDependencies": { 11 | "autoprefixer": "^10.4.20", 12 | "axios": "^1.7.9", 13 | "concurrently": "^9.1.2", 14 | "laravel-vite-plugin": "^1.2", 15 | "tailwindcss": "^4.0.0", 16 | "vite": "^6.0" 17 | } 18 | }, 19 | "node_modules/@esbuild/aix-ppc64": { 20 | "version": "0.24.2", 21 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz", 22 | "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==", 23 | "cpu": [ 24 | "ppc64" 25 | ], 26 | "license": "MIT", 27 | "optional": true, 28 | "os": [ 29 | "aix" 30 | ], 31 | "engines": { 32 | "node": ">=18" 33 | } 34 | }, 35 | "node_modules/@esbuild/android-arm": { 36 | "version": "0.24.2", 37 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz", 38 | "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==", 39 | "cpu": [ 40 | "arm" 41 | ], 42 | "license": "MIT", 43 | "optional": true, 44 | "os": [ 45 | "android" 46 | ], 47 | "engines": { 48 | "node": ">=18" 49 | } 50 | }, 51 | "node_modules/@esbuild/android-arm64": { 52 | "version": "0.24.2", 53 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz", 54 | "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==", 55 | "cpu": [ 56 | "arm64" 57 | ], 58 | "license": "MIT", 59 | "optional": true, 60 | "os": [ 61 | "android" 62 | ], 63 | "engines": { 64 | "node": ">=18" 65 | } 66 | }, 67 | "node_modules/@esbuild/android-x64": { 68 | "version": "0.24.2", 69 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz", 70 | "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==", 71 | "cpu": [ 72 | "x64" 73 | ], 74 | "license": "MIT", 75 | "optional": true, 76 | "os": [ 77 | "android" 78 | ], 79 | "engines": { 80 | "node": ">=18" 81 | } 82 | }, 83 | "node_modules/@esbuild/darwin-arm64": { 84 | "version": "0.24.2", 85 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz", 86 | "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==", 87 | "cpu": [ 88 | "arm64" 89 | ], 90 | "license": "MIT", 91 | "optional": true, 92 | "os": [ 93 | "darwin" 94 | ], 95 | "engines": { 96 | "node": ">=18" 97 | } 98 | }, 99 | "node_modules/@esbuild/darwin-x64": { 100 | "version": "0.24.2", 101 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz", 102 | "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==", 103 | "cpu": [ 104 | "x64" 105 | ], 106 | "license": "MIT", 107 | "optional": true, 108 | "os": [ 109 | "darwin" 110 | ], 111 | "engines": { 112 | "node": ">=18" 113 | } 114 | }, 115 | "node_modules/@esbuild/freebsd-arm64": { 116 | "version": "0.24.2", 117 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz", 118 | "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==", 119 | "cpu": [ 120 | "arm64" 121 | ], 122 | "license": "MIT", 123 | "optional": true, 124 | "os": [ 125 | "freebsd" 126 | ], 127 | "engines": { 128 | "node": ">=18" 129 | } 130 | }, 131 | "node_modules/@esbuild/freebsd-x64": { 132 | "version": "0.24.2", 133 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz", 134 | "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==", 135 | "cpu": [ 136 | "x64" 137 | ], 138 | "license": "MIT", 139 | "optional": true, 140 | "os": [ 141 | "freebsd" 142 | ], 143 | "engines": { 144 | "node": ">=18" 145 | } 146 | }, 147 | "node_modules/@esbuild/linux-arm": { 148 | "version": "0.24.2", 149 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz", 150 | "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==", 151 | "cpu": [ 152 | "arm" 153 | ], 154 | "license": "MIT", 155 | "optional": true, 156 | "os": [ 157 | "linux" 158 | ], 159 | "engines": { 160 | "node": ">=18" 161 | } 162 | }, 163 | "node_modules/@esbuild/linux-arm64": { 164 | "version": "0.24.2", 165 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz", 166 | "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==", 167 | "cpu": [ 168 | "arm64" 169 | ], 170 | "license": "MIT", 171 | "optional": true, 172 | "os": [ 173 | "linux" 174 | ], 175 | "engines": { 176 | "node": ">=18" 177 | } 178 | }, 179 | "node_modules/@esbuild/linux-ia32": { 180 | "version": "0.24.2", 181 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz", 182 | "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==", 183 | "cpu": [ 184 | "ia32" 185 | ], 186 | "license": "MIT", 187 | "optional": true, 188 | "os": [ 189 | "linux" 190 | ], 191 | "engines": { 192 | "node": ">=18" 193 | } 194 | }, 195 | "node_modules/@esbuild/linux-loong64": { 196 | "version": "0.24.2", 197 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz", 198 | "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==", 199 | "cpu": [ 200 | "loong64" 201 | ], 202 | "license": "MIT", 203 | "optional": true, 204 | "os": [ 205 | "linux" 206 | ], 207 | "engines": { 208 | "node": ">=18" 209 | } 210 | }, 211 | "node_modules/@esbuild/linux-mips64el": { 212 | "version": "0.24.2", 213 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz", 214 | "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==", 215 | "cpu": [ 216 | "mips64el" 217 | ], 218 | "license": "MIT", 219 | "optional": true, 220 | "os": [ 221 | "linux" 222 | ], 223 | "engines": { 224 | "node": ">=18" 225 | } 226 | }, 227 | "node_modules/@esbuild/linux-ppc64": { 228 | "version": "0.24.2", 229 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz", 230 | "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==", 231 | "cpu": [ 232 | "ppc64" 233 | ], 234 | "license": "MIT", 235 | "optional": true, 236 | "os": [ 237 | "linux" 238 | ], 239 | "engines": { 240 | "node": ">=18" 241 | } 242 | }, 243 | "node_modules/@esbuild/linux-riscv64": { 244 | "version": "0.24.2", 245 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz", 246 | "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==", 247 | "cpu": [ 248 | "riscv64" 249 | ], 250 | "license": "MIT", 251 | "optional": true, 252 | "os": [ 253 | "linux" 254 | ], 255 | "engines": { 256 | "node": ">=18" 257 | } 258 | }, 259 | "node_modules/@esbuild/linux-s390x": { 260 | "version": "0.24.2", 261 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz", 262 | "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==", 263 | "cpu": [ 264 | "s390x" 265 | ], 266 | "license": "MIT", 267 | "optional": true, 268 | "os": [ 269 | "linux" 270 | ], 271 | "engines": { 272 | "node": ">=18" 273 | } 274 | }, 275 | "node_modules/@esbuild/linux-x64": { 276 | "version": "0.24.2", 277 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", 278 | "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", 279 | "cpu": [ 280 | "x64" 281 | ], 282 | "license": "MIT", 283 | "optional": true, 284 | "os": [ 285 | "linux" 286 | ], 287 | "engines": { 288 | "node": ">=18" 289 | } 290 | }, 291 | "node_modules/@esbuild/netbsd-arm64": { 292 | "version": "0.24.2", 293 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz", 294 | "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==", 295 | "cpu": [ 296 | "arm64" 297 | ], 298 | "license": "MIT", 299 | "optional": true, 300 | "os": [ 301 | "netbsd" 302 | ], 303 | "engines": { 304 | "node": ">=18" 305 | } 306 | }, 307 | "node_modules/@esbuild/netbsd-x64": { 308 | "version": "0.24.2", 309 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz", 310 | "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==", 311 | "cpu": [ 312 | "x64" 313 | ], 314 | "license": "MIT", 315 | "optional": true, 316 | "os": [ 317 | "netbsd" 318 | ], 319 | "engines": { 320 | "node": ">=18" 321 | } 322 | }, 323 | "node_modules/@esbuild/openbsd-arm64": { 324 | "version": "0.24.2", 325 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz", 326 | "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==", 327 | "cpu": [ 328 | "arm64" 329 | ], 330 | "license": "MIT", 331 | "optional": true, 332 | "os": [ 333 | "openbsd" 334 | ], 335 | "engines": { 336 | "node": ">=18" 337 | } 338 | }, 339 | "node_modules/@esbuild/openbsd-x64": { 340 | "version": "0.24.2", 341 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz", 342 | "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==", 343 | "cpu": [ 344 | "x64" 345 | ], 346 | "license": "MIT", 347 | "optional": true, 348 | "os": [ 349 | "openbsd" 350 | ], 351 | "engines": { 352 | "node": ">=18" 353 | } 354 | }, 355 | "node_modules/@esbuild/sunos-x64": { 356 | "version": "0.24.2", 357 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz", 358 | "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==", 359 | "cpu": [ 360 | "x64" 361 | ], 362 | "license": "MIT", 363 | "optional": true, 364 | "os": [ 365 | "sunos" 366 | ], 367 | "engines": { 368 | "node": ">=18" 369 | } 370 | }, 371 | "node_modules/@esbuild/win32-arm64": { 372 | "version": "0.24.2", 373 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz", 374 | "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==", 375 | "cpu": [ 376 | "arm64" 377 | ], 378 | "license": "MIT", 379 | "optional": true, 380 | "os": [ 381 | "win32" 382 | ], 383 | "engines": { 384 | "node": ">=18" 385 | } 386 | }, 387 | "node_modules/@esbuild/win32-ia32": { 388 | "version": "0.24.2", 389 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz", 390 | "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==", 391 | "cpu": [ 392 | "ia32" 393 | ], 394 | "license": "MIT", 395 | "optional": true, 396 | "os": [ 397 | "win32" 398 | ], 399 | "engines": { 400 | "node": ">=18" 401 | } 402 | }, 403 | "node_modules/@esbuild/win32-x64": { 404 | "version": "0.24.2", 405 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz", 406 | "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==", 407 | "cpu": [ 408 | "x64" 409 | ], 410 | "license": "MIT", 411 | "optional": true, 412 | "os": [ 413 | "win32" 414 | ], 415 | "engines": { 416 | "node": ">=18" 417 | } 418 | }, 419 | "node_modules/@rollup/rollup-android-arm-eabi": { 420 | "version": "4.32.0", 421 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.32.0.tgz", 422 | "integrity": "sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==", 423 | "cpu": [ 424 | "arm" 425 | ], 426 | "license": "MIT", 427 | "optional": true, 428 | "os": [ 429 | "android" 430 | ] 431 | }, 432 | "node_modules/@rollup/rollup-android-arm64": { 433 | "version": "4.32.0", 434 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.32.0.tgz", 435 | "integrity": "sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==", 436 | "cpu": [ 437 | "arm64" 438 | ], 439 | "license": "MIT", 440 | "optional": true, 441 | "os": [ 442 | "android" 443 | ] 444 | }, 445 | "node_modules/@rollup/rollup-darwin-arm64": { 446 | "version": "4.32.0", 447 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.32.0.tgz", 448 | "integrity": "sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==", 449 | "cpu": [ 450 | "arm64" 451 | ], 452 | "license": "MIT", 453 | "optional": true, 454 | "os": [ 455 | "darwin" 456 | ] 457 | }, 458 | "node_modules/@rollup/rollup-darwin-x64": { 459 | "version": "4.32.0", 460 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.32.0.tgz", 461 | "integrity": "sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==", 462 | "cpu": [ 463 | "x64" 464 | ], 465 | "license": "MIT", 466 | "optional": true, 467 | "os": [ 468 | "darwin" 469 | ] 470 | }, 471 | "node_modules/@rollup/rollup-freebsd-arm64": { 472 | "version": "4.32.0", 473 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.32.0.tgz", 474 | "integrity": "sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==", 475 | "cpu": [ 476 | "arm64" 477 | ], 478 | "license": "MIT", 479 | "optional": true, 480 | "os": [ 481 | "freebsd" 482 | ] 483 | }, 484 | "node_modules/@rollup/rollup-freebsd-x64": { 485 | "version": "4.32.0", 486 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.32.0.tgz", 487 | "integrity": "sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==", 488 | "cpu": [ 489 | "x64" 490 | ], 491 | "license": "MIT", 492 | "optional": true, 493 | "os": [ 494 | "freebsd" 495 | ] 496 | }, 497 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 498 | "version": "4.32.0", 499 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.32.0.tgz", 500 | "integrity": "sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==", 501 | "cpu": [ 502 | "arm" 503 | ], 504 | "license": "MIT", 505 | "optional": true, 506 | "os": [ 507 | "linux" 508 | ] 509 | }, 510 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 511 | "version": "4.32.0", 512 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.32.0.tgz", 513 | "integrity": "sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==", 514 | "cpu": [ 515 | "arm" 516 | ], 517 | "license": "MIT", 518 | "optional": true, 519 | "os": [ 520 | "linux" 521 | ] 522 | }, 523 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 524 | "version": "4.32.0", 525 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.32.0.tgz", 526 | "integrity": "sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==", 527 | "cpu": [ 528 | "arm64" 529 | ], 530 | "license": "MIT", 531 | "optional": true, 532 | "os": [ 533 | "linux" 534 | ] 535 | }, 536 | "node_modules/@rollup/rollup-linux-arm64-musl": { 537 | "version": "4.32.0", 538 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.32.0.tgz", 539 | "integrity": "sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==", 540 | "cpu": [ 541 | "arm64" 542 | ], 543 | "license": "MIT", 544 | "optional": true, 545 | "os": [ 546 | "linux" 547 | ] 548 | }, 549 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 550 | "version": "4.32.0", 551 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.32.0.tgz", 552 | "integrity": "sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==", 553 | "cpu": [ 554 | "loong64" 555 | ], 556 | "license": "MIT", 557 | "optional": true, 558 | "os": [ 559 | "linux" 560 | ] 561 | }, 562 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 563 | "version": "4.32.0", 564 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.32.0.tgz", 565 | "integrity": "sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==", 566 | "cpu": [ 567 | "ppc64" 568 | ], 569 | "license": "MIT", 570 | "optional": true, 571 | "os": [ 572 | "linux" 573 | ] 574 | }, 575 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 576 | "version": "4.32.0", 577 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.32.0.tgz", 578 | "integrity": "sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==", 579 | "cpu": [ 580 | "riscv64" 581 | ], 582 | "license": "MIT", 583 | "optional": true, 584 | "os": [ 585 | "linux" 586 | ] 587 | }, 588 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 589 | "version": "4.32.0", 590 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.32.0.tgz", 591 | "integrity": "sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==", 592 | "cpu": [ 593 | "s390x" 594 | ], 595 | "license": "MIT", 596 | "optional": true, 597 | "os": [ 598 | "linux" 599 | ] 600 | }, 601 | "node_modules/@rollup/rollup-linux-x64-gnu": { 602 | "version": "4.32.0", 603 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.32.0.tgz", 604 | "integrity": "sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==", 605 | "cpu": [ 606 | "x64" 607 | ], 608 | "license": "MIT", 609 | "optional": true, 610 | "os": [ 611 | "linux" 612 | ] 613 | }, 614 | "node_modules/@rollup/rollup-linux-x64-musl": { 615 | "version": "4.32.0", 616 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.32.0.tgz", 617 | "integrity": "sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==", 618 | "cpu": [ 619 | "x64" 620 | ], 621 | "license": "MIT", 622 | "optional": true, 623 | "os": [ 624 | "linux" 625 | ] 626 | }, 627 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 628 | "version": "4.32.0", 629 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.32.0.tgz", 630 | "integrity": "sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==", 631 | "cpu": [ 632 | "arm64" 633 | ], 634 | "license": "MIT", 635 | "optional": true, 636 | "os": [ 637 | "win32" 638 | ] 639 | }, 640 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 641 | "version": "4.32.0", 642 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.32.0.tgz", 643 | "integrity": "sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==", 644 | "cpu": [ 645 | "ia32" 646 | ], 647 | "license": "MIT", 648 | "optional": true, 649 | "os": [ 650 | "win32" 651 | ] 652 | }, 653 | "node_modules/@rollup/rollup-win32-x64-msvc": { 654 | "version": "4.32.0", 655 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.32.0.tgz", 656 | "integrity": "sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==", 657 | "cpu": [ 658 | "x64" 659 | ], 660 | "license": "MIT", 661 | "optional": true, 662 | "os": [ 663 | "win32" 664 | ] 665 | }, 666 | "node_modules/@tailwindcss/node": { 667 | "version": "4.0.0", 668 | "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.0.tgz", 669 | "integrity": "sha512-tfG2uBvo6j6kDIPmntxwXggCOZAt7SkpAXJ6pTIYirNdk5FBqh/CZZ9BZPpgcl/tNFLs6zc4yghM76sqiELG9g==", 670 | "license": "MIT", 671 | "dependencies": { 672 | "enhanced-resolve": "^5.18.0", 673 | "jiti": "^2.4.2", 674 | "tailwindcss": "4.0.0" 675 | } 676 | }, 677 | "node_modules/@tailwindcss/oxide": { 678 | "version": "4.0.0", 679 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.0.tgz", 680 | "integrity": "sha512-W3FjpJgy4VV1JiL7iBYDf2n/WkeDg1Il+0Q7eWnqPyvkPPCo/Mbwc5BiaT7dfBNV6tQKAhVE34rU5xl8pSl50w==", 681 | "license": "MIT", 682 | "engines": { 683 | "node": ">= 10" 684 | }, 685 | "optionalDependencies": { 686 | "@tailwindcss/oxide-android-arm64": "4.0.0", 687 | "@tailwindcss/oxide-darwin-arm64": "4.0.0", 688 | "@tailwindcss/oxide-darwin-x64": "4.0.0", 689 | "@tailwindcss/oxide-freebsd-x64": "4.0.0", 690 | "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.0", 691 | "@tailwindcss/oxide-linux-arm64-gnu": "4.0.0", 692 | "@tailwindcss/oxide-linux-arm64-musl": "4.0.0", 693 | "@tailwindcss/oxide-linux-x64-gnu": "4.0.0", 694 | "@tailwindcss/oxide-linux-x64-musl": "4.0.0", 695 | "@tailwindcss/oxide-win32-arm64-msvc": "4.0.0", 696 | "@tailwindcss/oxide-win32-x64-msvc": "4.0.0" 697 | } 698 | }, 699 | "node_modules/@tailwindcss/oxide-android-arm64": { 700 | "version": "4.0.0", 701 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.0.tgz", 702 | "integrity": "sha512-EAhjU0+FIdyGPR+7MbBWubLLPtmOu+p7c2egTTFBRk/n//zYjNvVK0WhcBK5Y7oUB5mo4EjA2mCbY7dcEMWSRw==", 703 | "cpu": [ 704 | "arm64" 705 | ], 706 | "license": "MIT", 707 | "optional": true, 708 | "os": [ 709 | "android" 710 | ], 711 | "engines": { 712 | "node": ">= 10" 713 | } 714 | }, 715 | "node_modules/@tailwindcss/oxide-darwin-arm64": { 716 | "version": "4.0.0", 717 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.0.tgz", 718 | "integrity": "sha512-hdz4xnSWS11cIp+7ye+3dGHqs0X33z+BXXTtgPOguDWVa+TdXUzwxonklSzf5wlJFuot3dv5eWzhlNai0oYYQg==", 719 | "cpu": [ 720 | "arm64" 721 | ], 722 | "license": "MIT", 723 | "optional": true, 724 | "os": [ 725 | "darwin" 726 | ], 727 | "engines": { 728 | "node": ">= 10" 729 | } 730 | }, 731 | "node_modules/@tailwindcss/oxide-darwin-x64": { 732 | "version": "4.0.0", 733 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.0.tgz", 734 | "integrity": "sha512-+dOUUaXTkPKKhtUI9QtVaYg+MpmLh2CN0dHohiYXaBirEyPMkjaT0zbRgzQlNnQWjCVVXPQluIEb0OMEjSTH+Q==", 735 | "cpu": [ 736 | "x64" 737 | ], 738 | "license": "MIT", 739 | "optional": true, 740 | "os": [ 741 | "darwin" 742 | ], 743 | "engines": { 744 | "node": ">= 10" 745 | } 746 | }, 747 | "node_modules/@tailwindcss/oxide-freebsd-x64": { 748 | "version": "4.0.0", 749 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.0.tgz", 750 | "integrity": "sha512-CJhGDhxnrmu4SwyC62fA+wP24MhA/TZlIhRHqg1kRuIHoGoVR2uSSm1qxTxU37tSSZj8Up0q6jsBJCAP4k7rgQ==", 751 | "cpu": [ 752 | "x64" 753 | ], 754 | "license": "MIT", 755 | "optional": true, 756 | "os": [ 757 | "freebsd" 758 | ], 759 | "engines": { 760 | "node": ">= 10" 761 | } 762 | }, 763 | "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 764 | "version": "4.0.0", 765 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.0.tgz", 766 | "integrity": "sha512-Wy7Av0xzXfY2ujZBcYy4+7GQm25/J1iHvlQU2CfwdDCuPWfIjYzR6kggz+uVdSJyKV2s64znchBxRE8kV4uXSA==", 767 | "cpu": [ 768 | "arm" 769 | ], 770 | "license": "MIT", 771 | "optional": true, 772 | "os": [ 773 | "linux" 774 | ], 775 | "engines": { 776 | "node": ">= 10" 777 | } 778 | }, 779 | "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 780 | "version": "4.0.0", 781 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.0.tgz", 782 | "integrity": "sha512-srwBo2l6pvM0swBntc1ucuhGsfFOLkqPRFQ3dWARRTfSkL1U9nAsob2MKc/n47Eva/W9pZZgMOuf7rDw8pK1Ew==", 783 | "cpu": [ 784 | "arm64" 785 | ], 786 | "license": "MIT", 787 | "optional": true, 788 | "os": [ 789 | "linux" 790 | ], 791 | "engines": { 792 | "node": ">= 10" 793 | } 794 | }, 795 | "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 796 | "version": "4.0.0", 797 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.0.tgz", 798 | "integrity": "sha512-abhusswkduYWuezkBmgo0K0/erGq3M4Se5xP0fhc/0dKs0X/rJUYYCFWntHb3IGh3aVzdQ0SXJs93P76DbUqtw==", 799 | "cpu": [ 800 | "arm64" 801 | ], 802 | "license": "MIT", 803 | "optional": true, 804 | "os": [ 805 | "linux" 806 | ], 807 | "engines": { 808 | "node": ">= 10" 809 | } 810 | }, 811 | "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 812 | "version": "4.0.0", 813 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.0.tgz", 814 | "integrity": "sha512-hGtRYIUEx377/HlU49+jvVKKwU1MDSKYSMMs0JFO2Wp7LGxk5+0j5+RBk9NFnmp/lbp32yPTgIOO5m1BmDq36A==", 815 | "cpu": [ 816 | "x64" 817 | ], 818 | "license": "MIT", 819 | "optional": true, 820 | "os": [ 821 | "linux" 822 | ], 823 | "engines": { 824 | "node": ">= 10" 825 | } 826 | }, 827 | "node_modules/@tailwindcss/oxide-linux-x64-musl": { 828 | "version": "4.0.0", 829 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.0.tgz", 830 | "integrity": "sha512-7xgQgSAThs0I14VAgmxpJnK6XFSZBxHMGoDXkLyYkEnu+8WRQMbCP93dkCUn2PIv+Q+JulRgc00PJ09uORSLXQ==", 831 | "cpu": [ 832 | "x64" 833 | ], 834 | "license": "MIT", 835 | "optional": true, 836 | "os": [ 837 | "linux" 838 | ], 839 | "engines": { 840 | "node": ">= 10" 841 | } 842 | }, 843 | "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 844 | "version": "4.0.0", 845 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.0.tgz", 846 | "integrity": "sha512-qEcgTIPcWY5ZE7f6VxQ/JPrSFMcehzVIlZj7sGE3mVd5YWreAT+Fl1vSP8q2pjnWXn0avZG3Iw7a2hJQAm+fTQ==", 847 | "cpu": [ 848 | "arm64" 849 | ], 850 | "license": "MIT", 851 | "optional": true, 852 | "os": [ 853 | "win32" 854 | ], 855 | "engines": { 856 | "node": ">= 10" 857 | } 858 | }, 859 | "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 860 | "version": "4.0.0", 861 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.0.tgz", 862 | "integrity": "sha512-bqT0AY8RXb8GMDy28JtngvqaOSB2YixbLPLvUo6I6lkvvUwA6Eqh2Tj60e2Lh7O/k083f8tYiB0WEK4wmTI7Jg==", 863 | "cpu": [ 864 | "x64" 865 | ], 866 | "license": "MIT", 867 | "optional": true, 868 | "os": [ 869 | "win32" 870 | ], 871 | "engines": { 872 | "node": ">= 10" 873 | } 874 | }, 875 | "node_modules/@tailwindcss/vite": { 876 | "version": "4.0.0", 877 | "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.0.0.tgz", 878 | "integrity": "sha512-4uukMiU9gHui8KMPMdWic5SP1O/tmQ1NFSRNrQWmcop5evAVl/LZ6/LuWL3quEiecp2RBcRWwqJrG+mFXlRlew==", 879 | "license": "MIT", 880 | "dependencies": { 881 | "@tailwindcss/node": "^4.0.0", 882 | "@tailwindcss/oxide": "^4.0.0", 883 | "lightningcss": "^1.29.1", 884 | "tailwindcss": "4.0.0" 885 | }, 886 | "peerDependencies": { 887 | "vite": "^5.2.0 || ^6" 888 | } 889 | }, 890 | "node_modules/@types/estree": { 891 | "version": "1.0.6", 892 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 893 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 894 | "license": "MIT" 895 | }, 896 | "node_modules/ansi-styles": { 897 | "version": "4.3.0", 898 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 899 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 900 | "dev": true, 901 | "license": "MIT", 902 | "dependencies": { 903 | "color-convert": "^2.0.1" 904 | }, 905 | "engines": { 906 | "node": ">=8" 907 | }, 908 | "funding": { 909 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 910 | } 911 | }, 912 | "node_modules/asynckit": { 913 | "version": "0.4.0", 914 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 915 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", 916 | "dev": true, 917 | "license": "MIT" 918 | }, 919 | "node_modules/autoprefixer": { 920 | "version": "10.4.20", 921 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", 922 | "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", 923 | "dev": true, 924 | "funding": [ 925 | { 926 | "type": "opencollective", 927 | "url": "https://opencollective.com/postcss/" 928 | }, 929 | { 930 | "type": "tidelift", 931 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 932 | }, 933 | { 934 | "type": "github", 935 | "url": "https://github.com/sponsors/ai" 936 | } 937 | ], 938 | "license": "MIT", 939 | "dependencies": { 940 | "browserslist": "^4.23.3", 941 | "caniuse-lite": "^1.0.30001646", 942 | "fraction.js": "^4.3.7", 943 | "normalize-range": "^0.1.2", 944 | "picocolors": "^1.0.1", 945 | "postcss-value-parser": "^4.2.0" 946 | }, 947 | "bin": { 948 | "autoprefixer": "bin/autoprefixer" 949 | }, 950 | "engines": { 951 | "node": "^10 || ^12 || >=14" 952 | }, 953 | "peerDependencies": { 954 | "postcss": "^8.1.0" 955 | } 956 | }, 957 | "node_modules/axios": { 958 | "version": "1.7.9", 959 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz", 960 | "integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==", 961 | "dev": true, 962 | "license": "MIT", 963 | "dependencies": { 964 | "follow-redirects": "^1.15.6", 965 | "form-data": "^4.0.0", 966 | "proxy-from-env": "^1.1.0" 967 | } 968 | }, 969 | "node_modules/browserslist": { 970 | "version": "4.24.4", 971 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", 972 | "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", 973 | "dev": true, 974 | "funding": [ 975 | { 976 | "type": "opencollective", 977 | "url": "https://opencollective.com/browserslist" 978 | }, 979 | { 980 | "type": "tidelift", 981 | "url": "https://tidelift.com/funding/github/npm/browserslist" 982 | }, 983 | { 984 | "type": "github", 985 | "url": "https://github.com/sponsors/ai" 986 | } 987 | ], 988 | "license": "MIT", 989 | "dependencies": { 990 | "caniuse-lite": "^1.0.30001688", 991 | "electron-to-chromium": "^1.5.73", 992 | "node-releases": "^2.0.19", 993 | "update-browserslist-db": "^1.1.1" 994 | }, 995 | "bin": { 996 | "browserslist": "cli.js" 997 | }, 998 | "engines": { 999 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1000 | } 1001 | }, 1002 | "node_modules/caniuse-lite": { 1003 | "version": "1.0.30001695", 1004 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz", 1005 | "integrity": "sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==", 1006 | "dev": true, 1007 | "funding": [ 1008 | { 1009 | "type": "opencollective", 1010 | "url": "https://opencollective.com/browserslist" 1011 | }, 1012 | { 1013 | "type": "tidelift", 1014 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1015 | }, 1016 | { 1017 | "type": "github", 1018 | "url": "https://github.com/sponsors/ai" 1019 | } 1020 | ], 1021 | "license": "CC-BY-4.0" 1022 | }, 1023 | "node_modules/chalk": { 1024 | "version": "4.1.2", 1025 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1026 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1027 | "dev": true, 1028 | "license": "MIT", 1029 | "dependencies": { 1030 | "ansi-styles": "^4.1.0", 1031 | "supports-color": "^7.1.0" 1032 | }, 1033 | "engines": { 1034 | "node": ">=10" 1035 | }, 1036 | "funding": { 1037 | "url": "https://github.com/chalk/chalk?sponsor=1" 1038 | } 1039 | }, 1040 | "node_modules/chalk/node_modules/supports-color": { 1041 | "version": "7.2.0", 1042 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1043 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1044 | "dev": true, 1045 | "license": "MIT", 1046 | "dependencies": { 1047 | "has-flag": "^4.0.0" 1048 | }, 1049 | "engines": { 1050 | "node": ">=8" 1051 | } 1052 | }, 1053 | "node_modules/cliui": { 1054 | "version": "8.0.1", 1055 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", 1056 | "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", 1057 | "dev": true, 1058 | "license": "ISC", 1059 | "dependencies": { 1060 | "string-width": "^4.2.0", 1061 | "strip-ansi": "^6.0.1", 1062 | "wrap-ansi": "^7.0.0" 1063 | }, 1064 | "engines": { 1065 | "node": ">=12" 1066 | } 1067 | }, 1068 | "node_modules/cliui/node_modules/ansi-regex": { 1069 | "version": "5.0.1", 1070 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1071 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1072 | "dev": true, 1073 | "license": "MIT", 1074 | "engines": { 1075 | "node": ">=8" 1076 | } 1077 | }, 1078 | "node_modules/cliui/node_modules/emoji-regex": { 1079 | "version": "8.0.0", 1080 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1081 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1082 | "dev": true, 1083 | "license": "MIT" 1084 | }, 1085 | "node_modules/cliui/node_modules/string-width": { 1086 | "version": "4.2.3", 1087 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 1088 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 1089 | "dev": true, 1090 | "license": "MIT", 1091 | "dependencies": { 1092 | "emoji-regex": "^8.0.0", 1093 | "is-fullwidth-code-point": "^3.0.0", 1094 | "strip-ansi": "^6.0.1" 1095 | }, 1096 | "engines": { 1097 | "node": ">=8" 1098 | } 1099 | }, 1100 | "node_modules/cliui/node_modules/strip-ansi": { 1101 | "version": "6.0.1", 1102 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1103 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1104 | "dev": true, 1105 | "license": "MIT", 1106 | "dependencies": { 1107 | "ansi-regex": "^5.0.1" 1108 | }, 1109 | "engines": { 1110 | "node": ">=8" 1111 | } 1112 | }, 1113 | "node_modules/cliui/node_modules/wrap-ansi": { 1114 | "version": "7.0.0", 1115 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 1116 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 1117 | "dev": true, 1118 | "license": "MIT", 1119 | "dependencies": { 1120 | "ansi-styles": "^4.0.0", 1121 | "string-width": "^4.1.0", 1122 | "strip-ansi": "^6.0.0" 1123 | }, 1124 | "engines": { 1125 | "node": ">=10" 1126 | }, 1127 | "funding": { 1128 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 1129 | } 1130 | }, 1131 | "node_modules/color-convert": { 1132 | "version": "2.0.1", 1133 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1134 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1135 | "dev": true, 1136 | "license": "MIT", 1137 | "dependencies": { 1138 | "color-name": "~1.1.4" 1139 | }, 1140 | "engines": { 1141 | "node": ">=7.0.0" 1142 | } 1143 | }, 1144 | "node_modules/color-name": { 1145 | "version": "1.1.4", 1146 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1147 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1148 | "dev": true, 1149 | "license": "MIT" 1150 | }, 1151 | "node_modules/combined-stream": { 1152 | "version": "1.0.8", 1153 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1154 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1155 | "dev": true, 1156 | "license": "MIT", 1157 | "dependencies": { 1158 | "delayed-stream": "~1.0.0" 1159 | }, 1160 | "engines": { 1161 | "node": ">= 0.8" 1162 | } 1163 | }, 1164 | "node_modules/concurrently": { 1165 | "version": "9.1.2", 1166 | "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.1.2.tgz", 1167 | "integrity": "sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==", 1168 | "dev": true, 1169 | "license": "MIT", 1170 | "dependencies": { 1171 | "chalk": "^4.1.2", 1172 | "lodash": "^4.17.21", 1173 | "rxjs": "^7.8.1", 1174 | "shell-quote": "^1.8.1", 1175 | "supports-color": "^8.1.1", 1176 | "tree-kill": "^1.2.2", 1177 | "yargs": "^17.7.2" 1178 | }, 1179 | "bin": { 1180 | "conc": "dist/bin/concurrently.js", 1181 | "concurrently": "dist/bin/concurrently.js" 1182 | }, 1183 | "engines": { 1184 | "node": ">=18" 1185 | }, 1186 | "funding": { 1187 | "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" 1188 | } 1189 | }, 1190 | "node_modules/delayed-stream": { 1191 | "version": "1.0.0", 1192 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1193 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1194 | "dev": true, 1195 | "license": "MIT", 1196 | "engines": { 1197 | "node": ">=0.4.0" 1198 | } 1199 | }, 1200 | "node_modules/detect-libc": { 1201 | "version": "1.0.3", 1202 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", 1203 | "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", 1204 | "license": "Apache-2.0", 1205 | "bin": { 1206 | "detect-libc": "bin/detect-libc.js" 1207 | }, 1208 | "engines": { 1209 | "node": ">=0.10" 1210 | } 1211 | }, 1212 | "node_modules/electron-to-chromium": { 1213 | "version": "1.5.88", 1214 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.88.tgz", 1215 | "integrity": "sha512-K3C2qf1o+bGzbilTDCTBhTQcMS9KW60yTAaTeeXsfvQuTDDwlokLam/AdqlqcSy9u4UainDgsHV23ksXAOgamw==", 1216 | "dev": true, 1217 | "license": "ISC" 1218 | }, 1219 | "node_modules/enhanced-resolve": { 1220 | "version": "5.18.0", 1221 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.0.tgz", 1222 | "integrity": "sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==", 1223 | "license": "MIT", 1224 | "dependencies": { 1225 | "graceful-fs": "^4.2.4", 1226 | "tapable": "^2.2.0" 1227 | }, 1228 | "engines": { 1229 | "node": ">=10.13.0" 1230 | } 1231 | }, 1232 | "node_modules/esbuild": { 1233 | "version": "0.24.2", 1234 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", 1235 | "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", 1236 | "hasInstallScript": true, 1237 | "license": "MIT", 1238 | "bin": { 1239 | "esbuild": "bin/esbuild" 1240 | }, 1241 | "engines": { 1242 | "node": ">=18" 1243 | }, 1244 | "optionalDependencies": { 1245 | "@esbuild/aix-ppc64": "0.24.2", 1246 | "@esbuild/android-arm": "0.24.2", 1247 | "@esbuild/android-arm64": "0.24.2", 1248 | "@esbuild/android-x64": "0.24.2", 1249 | "@esbuild/darwin-arm64": "0.24.2", 1250 | "@esbuild/darwin-x64": "0.24.2", 1251 | "@esbuild/freebsd-arm64": "0.24.2", 1252 | "@esbuild/freebsd-x64": "0.24.2", 1253 | "@esbuild/linux-arm": "0.24.2", 1254 | "@esbuild/linux-arm64": "0.24.2", 1255 | "@esbuild/linux-ia32": "0.24.2", 1256 | "@esbuild/linux-loong64": "0.24.2", 1257 | "@esbuild/linux-mips64el": "0.24.2", 1258 | "@esbuild/linux-ppc64": "0.24.2", 1259 | "@esbuild/linux-riscv64": "0.24.2", 1260 | "@esbuild/linux-s390x": "0.24.2", 1261 | "@esbuild/linux-x64": "0.24.2", 1262 | "@esbuild/netbsd-arm64": "0.24.2", 1263 | "@esbuild/netbsd-x64": "0.24.2", 1264 | "@esbuild/openbsd-arm64": "0.24.2", 1265 | "@esbuild/openbsd-x64": "0.24.2", 1266 | "@esbuild/sunos-x64": "0.24.2", 1267 | "@esbuild/win32-arm64": "0.24.2", 1268 | "@esbuild/win32-ia32": "0.24.2", 1269 | "@esbuild/win32-x64": "0.24.2" 1270 | } 1271 | }, 1272 | "node_modules/escalade": { 1273 | "version": "3.2.0", 1274 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1275 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1276 | "dev": true, 1277 | "license": "MIT", 1278 | "engines": { 1279 | "node": ">=6" 1280 | } 1281 | }, 1282 | "node_modules/follow-redirects": { 1283 | "version": "1.15.9", 1284 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", 1285 | "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", 1286 | "dev": true, 1287 | "funding": [ 1288 | { 1289 | "type": "individual", 1290 | "url": "https://github.com/sponsors/RubenVerborgh" 1291 | } 1292 | ], 1293 | "license": "MIT", 1294 | "engines": { 1295 | "node": ">=4.0" 1296 | }, 1297 | "peerDependenciesMeta": { 1298 | "debug": { 1299 | "optional": true 1300 | } 1301 | } 1302 | }, 1303 | "node_modules/form-data": { 1304 | "version": "4.0.1", 1305 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", 1306 | "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", 1307 | "dev": true, 1308 | "license": "MIT", 1309 | "dependencies": { 1310 | "asynckit": "^0.4.0", 1311 | "combined-stream": "^1.0.8", 1312 | "mime-types": "^2.1.12" 1313 | }, 1314 | "engines": { 1315 | "node": ">= 6" 1316 | } 1317 | }, 1318 | "node_modules/fraction.js": { 1319 | "version": "4.3.7", 1320 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1321 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1322 | "dev": true, 1323 | "license": "MIT", 1324 | "engines": { 1325 | "node": "*" 1326 | }, 1327 | "funding": { 1328 | "type": "patreon", 1329 | "url": "https://github.com/sponsors/rawify" 1330 | } 1331 | }, 1332 | "node_modules/fsevents": { 1333 | "version": "2.3.3", 1334 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1335 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1336 | "hasInstallScript": true, 1337 | "license": "MIT", 1338 | "optional": true, 1339 | "os": [ 1340 | "darwin" 1341 | ], 1342 | "engines": { 1343 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1344 | } 1345 | }, 1346 | "node_modules/get-caller-file": { 1347 | "version": "2.0.5", 1348 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", 1349 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", 1350 | "dev": true, 1351 | "license": "ISC", 1352 | "engines": { 1353 | "node": "6.* || 8.* || >= 10.*" 1354 | } 1355 | }, 1356 | "node_modules/graceful-fs": { 1357 | "version": "4.2.11", 1358 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1359 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1360 | "license": "ISC" 1361 | }, 1362 | "node_modules/has-flag": { 1363 | "version": "4.0.0", 1364 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1365 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1366 | "dev": true, 1367 | "license": "MIT", 1368 | "engines": { 1369 | "node": ">=8" 1370 | } 1371 | }, 1372 | "node_modules/is-fullwidth-code-point": { 1373 | "version": "3.0.0", 1374 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1375 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1376 | "dev": true, 1377 | "license": "MIT", 1378 | "engines": { 1379 | "node": ">=8" 1380 | } 1381 | }, 1382 | "node_modules/jiti": { 1383 | "version": "2.4.2", 1384 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", 1385 | "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", 1386 | "license": "MIT", 1387 | "bin": { 1388 | "jiti": "lib/jiti-cli.mjs" 1389 | } 1390 | }, 1391 | "node_modules/laravel-vite-plugin": { 1392 | "version": "1.2.0", 1393 | "resolved": "https://registry.npmjs.org/laravel-vite-plugin/-/laravel-vite-plugin-1.2.0.tgz", 1394 | "integrity": "sha512-R0pJ+IcTVeqEMoKz/B2Ij57QVq3sFTABiFmb06gAwFdivbOgsUtuhX6N2MGLEArajrS3U5JbberzwOe7uXHMHQ==", 1395 | "dev": true, 1396 | "license": "MIT", 1397 | "dependencies": { 1398 | "picocolors": "^1.0.0", 1399 | "vite-plugin-full-reload": "^1.1.0" 1400 | }, 1401 | "bin": { 1402 | "clean-orphaned-assets": "bin/clean.js" 1403 | }, 1404 | "engines": { 1405 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 1406 | }, 1407 | "peerDependencies": { 1408 | "vite": "^5.0.0 || ^6.0.0" 1409 | } 1410 | }, 1411 | "node_modules/lightningcss": { 1412 | "version": "1.29.1", 1413 | "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.1.tgz", 1414 | "integrity": "sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q==", 1415 | "license": "MPL-2.0", 1416 | "dependencies": { 1417 | "detect-libc": "^1.0.3" 1418 | }, 1419 | "engines": { 1420 | "node": ">= 12.0.0" 1421 | }, 1422 | "funding": { 1423 | "type": "opencollective", 1424 | "url": "https://opencollective.com/parcel" 1425 | }, 1426 | "optionalDependencies": { 1427 | "lightningcss-darwin-arm64": "1.29.1", 1428 | "lightningcss-darwin-x64": "1.29.1", 1429 | "lightningcss-freebsd-x64": "1.29.1", 1430 | "lightningcss-linux-arm-gnueabihf": "1.29.1", 1431 | "lightningcss-linux-arm64-gnu": "1.29.1", 1432 | "lightningcss-linux-arm64-musl": "1.29.1", 1433 | "lightningcss-linux-x64-gnu": "1.29.1", 1434 | "lightningcss-linux-x64-musl": "1.29.1", 1435 | "lightningcss-win32-arm64-msvc": "1.29.1", 1436 | "lightningcss-win32-x64-msvc": "1.29.1" 1437 | } 1438 | }, 1439 | "node_modules/lightningcss-darwin-arm64": { 1440 | "version": "1.29.1", 1441 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.1.tgz", 1442 | "integrity": "sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw==", 1443 | "cpu": [ 1444 | "arm64" 1445 | ], 1446 | "license": "MPL-2.0", 1447 | "optional": true, 1448 | "os": [ 1449 | "darwin" 1450 | ], 1451 | "engines": { 1452 | "node": ">= 12.0.0" 1453 | }, 1454 | "funding": { 1455 | "type": "opencollective", 1456 | "url": "https://opencollective.com/parcel" 1457 | } 1458 | }, 1459 | "node_modules/lightningcss-darwin-x64": { 1460 | "version": "1.29.1", 1461 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.1.tgz", 1462 | "integrity": "sha512-k33G9IzKUpHy/J/3+9MCO4e+PzaFblsgBjSGlpAaFikeBFm8B/CkO3cKU9oI4g+fjS2KlkLM/Bza9K/aw8wsNA==", 1463 | "cpu": [ 1464 | "x64" 1465 | ], 1466 | "license": "MPL-2.0", 1467 | "optional": true, 1468 | "os": [ 1469 | "darwin" 1470 | ], 1471 | "engines": { 1472 | "node": ">= 12.0.0" 1473 | }, 1474 | "funding": { 1475 | "type": "opencollective", 1476 | "url": "https://opencollective.com/parcel" 1477 | } 1478 | }, 1479 | "node_modules/lightningcss-freebsd-x64": { 1480 | "version": "1.29.1", 1481 | "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.1.tgz", 1482 | "integrity": "sha512-0SUW22fv/8kln2LnIdOCmSuXnxgxVC276W5KLTwoehiO0hxkacBxjHOL5EtHD8BAXg2BvuhsJPmVMasvby3LiQ==", 1483 | "cpu": [ 1484 | "x64" 1485 | ], 1486 | "license": "MPL-2.0", 1487 | "optional": true, 1488 | "os": [ 1489 | "freebsd" 1490 | ], 1491 | "engines": { 1492 | "node": ">= 12.0.0" 1493 | }, 1494 | "funding": { 1495 | "type": "opencollective", 1496 | "url": "https://opencollective.com/parcel" 1497 | } 1498 | }, 1499 | "node_modules/lightningcss-linux-arm-gnueabihf": { 1500 | "version": "1.29.1", 1501 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.1.tgz", 1502 | "integrity": "sha512-sD32pFvlR0kDlqsOZmYqH/68SqUMPNj+0pucGxToXZi4XZgZmqeX/NkxNKCPsswAXU3UeYgDSpGhu05eAufjDg==", 1503 | "cpu": [ 1504 | "arm" 1505 | ], 1506 | "license": "MPL-2.0", 1507 | "optional": true, 1508 | "os": [ 1509 | "linux" 1510 | ], 1511 | "engines": { 1512 | "node": ">= 12.0.0" 1513 | }, 1514 | "funding": { 1515 | "type": "opencollective", 1516 | "url": "https://opencollective.com/parcel" 1517 | } 1518 | }, 1519 | "node_modules/lightningcss-linux-arm64-gnu": { 1520 | "version": "1.29.1", 1521 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.1.tgz", 1522 | "integrity": "sha512-0+vClRIZ6mmJl/dxGuRsE197o1HDEeeRk6nzycSy2GofC2JsY4ifCRnvUWf/CUBQmlrvMzt6SMQNMSEu22csWQ==", 1523 | "cpu": [ 1524 | "arm64" 1525 | ], 1526 | "license": "MPL-2.0", 1527 | "optional": true, 1528 | "os": [ 1529 | "linux" 1530 | ], 1531 | "engines": { 1532 | "node": ">= 12.0.0" 1533 | }, 1534 | "funding": { 1535 | "type": "opencollective", 1536 | "url": "https://opencollective.com/parcel" 1537 | } 1538 | }, 1539 | "node_modules/lightningcss-linux-arm64-musl": { 1540 | "version": "1.29.1", 1541 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.1.tgz", 1542 | "integrity": "sha512-UKMFrG4rL/uHNgelBsDwJcBqVpzNJbzsKkbI3Ja5fg00sgQnHw/VrzUTEc4jhZ+AN2BvQYz/tkHu4vt1kLuJyw==", 1543 | "cpu": [ 1544 | "arm64" 1545 | ], 1546 | "license": "MPL-2.0", 1547 | "optional": true, 1548 | "os": [ 1549 | "linux" 1550 | ], 1551 | "engines": { 1552 | "node": ">= 12.0.0" 1553 | }, 1554 | "funding": { 1555 | "type": "opencollective", 1556 | "url": "https://opencollective.com/parcel" 1557 | } 1558 | }, 1559 | "node_modules/lightningcss-linux-x64-gnu": { 1560 | "version": "1.29.1", 1561 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.1.tgz", 1562 | "integrity": "sha512-u1S+xdODy/eEtjADqirA774y3jLcm8RPtYztwReEXoZKdzgsHYPl0s5V52Tst+GKzqjebkULT86XMSxejzfISw==", 1563 | "cpu": [ 1564 | "x64" 1565 | ], 1566 | "license": "MPL-2.0", 1567 | "optional": true, 1568 | "os": [ 1569 | "linux" 1570 | ], 1571 | "engines": { 1572 | "node": ">= 12.0.0" 1573 | }, 1574 | "funding": { 1575 | "type": "opencollective", 1576 | "url": "https://opencollective.com/parcel" 1577 | } 1578 | }, 1579 | "node_modules/lightningcss-linux-x64-musl": { 1580 | "version": "1.29.1", 1581 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.1.tgz", 1582 | "integrity": "sha512-L0Tx0DtaNUTzXv0lbGCLB/c/qEADanHbu4QdcNOXLIe1i8i22rZRpbT3gpWYsCh9aSL9zFujY/WmEXIatWvXbw==", 1583 | "cpu": [ 1584 | "x64" 1585 | ], 1586 | "license": "MPL-2.0", 1587 | "optional": true, 1588 | "os": [ 1589 | "linux" 1590 | ], 1591 | "engines": { 1592 | "node": ">= 12.0.0" 1593 | }, 1594 | "funding": { 1595 | "type": "opencollective", 1596 | "url": "https://opencollective.com/parcel" 1597 | } 1598 | }, 1599 | "node_modules/lightningcss-win32-arm64-msvc": { 1600 | "version": "1.29.1", 1601 | "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.1.tgz", 1602 | "integrity": "sha512-QoOVnkIEFfbW4xPi+dpdft/zAKmgLgsRHfJalEPYuJDOWf7cLQzYg0DEh8/sn737FaeMJxHZRc1oBreiwZCjog==", 1603 | "cpu": [ 1604 | "arm64" 1605 | ], 1606 | "license": "MPL-2.0", 1607 | "optional": true, 1608 | "os": [ 1609 | "win32" 1610 | ], 1611 | "engines": { 1612 | "node": ">= 12.0.0" 1613 | }, 1614 | "funding": { 1615 | "type": "opencollective", 1616 | "url": "https://opencollective.com/parcel" 1617 | } 1618 | }, 1619 | "node_modules/lightningcss-win32-x64-msvc": { 1620 | "version": "1.29.1", 1621 | "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.1.tgz", 1622 | "integrity": "sha512-NygcbThNBe4JElP+olyTI/doBNGJvLs3bFCRPdvuCcxZCcCZ71B858IHpdm7L1btZex0FvCmM17FK98Y9MRy1Q==", 1623 | "cpu": [ 1624 | "x64" 1625 | ], 1626 | "license": "MPL-2.0", 1627 | "optional": true, 1628 | "os": [ 1629 | "win32" 1630 | ], 1631 | "engines": { 1632 | "node": ">= 12.0.0" 1633 | }, 1634 | "funding": { 1635 | "type": "opencollective", 1636 | "url": "https://opencollective.com/parcel" 1637 | } 1638 | }, 1639 | "node_modules/lodash": { 1640 | "version": "4.17.21", 1641 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 1642 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 1643 | "dev": true, 1644 | "license": "MIT" 1645 | }, 1646 | "node_modules/mime-db": { 1647 | "version": "1.52.0", 1648 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1649 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1650 | "dev": true, 1651 | "license": "MIT", 1652 | "engines": { 1653 | "node": ">= 0.6" 1654 | } 1655 | }, 1656 | "node_modules/mime-types": { 1657 | "version": "2.1.35", 1658 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1659 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1660 | "dev": true, 1661 | "license": "MIT", 1662 | "dependencies": { 1663 | "mime-db": "1.52.0" 1664 | }, 1665 | "engines": { 1666 | "node": ">= 0.6" 1667 | } 1668 | }, 1669 | "node_modules/nanoid": { 1670 | "version": "3.3.8", 1671 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 1672 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 1673 | "funding": [ 1674 | { 1675 | "type": "github", 1676 | "url": "https://github.com/sponsors/ai" 1677 | } 1678 | ], 1679 | "license": "MIT", 1680 | "bin": { 1681 | "nanoid": "bin/nanoid.cjs" 1682 | }, 1683 | "engines": { 1684 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 1685 | } 1686 | }, 1687 | "node_modules/node-releases": { 1688 | "version": "2.0.19", 1689 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 1690 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 1691 | "dev": true, 1692 | "license": "MIT" 1693 | }, 1694 | "node_modules/normalize-range": { 1695 | "version": "0.1.2", 1696 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 1697 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 1698 | "dev": true, 1699 | "license": "MIT", 1700 | "engines": { 1701 | "node": ">=0.10.0" 1702 | } 1703 | }, 1704 | "node_modules/picocolors": { 1705 | "version": "1.1.1", 1706 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1707 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1708 | "license": "ISC" 1709 | }, 1710 | "node_modules/picomatch": { 1711 | "version": "2.3.1", 1712 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1713 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1714 | "dev": true, 1715 | "license": "MIT", 1716 | "engines": { 1717 | "node": ">=8.6" 1718 | }, 1719 | "funding": { 1720 | "url": "https://github.com/sponsors/jonschlinkert" 1721 | } 1722 | }, 1723 | "node_modules/postcss": { 1724 | "version": "8.5.1", 1725 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", 1726 | "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", 1727 | "funding": [ 1728 | { 1729 | "type": "opencollective", 1730 | "url": "https://opencollective.com/postcss/" 1731 | }, 1732 | { 1733 | "type": "tidelift", 1734 | "url": "https://tidelift.com/funding/github/npm/postcss" 1735 | }, 1736 | { 1737 | "type": "github", 1738 | "url": "https://github.com/sponsors/ai" 1739 | } 1740 | ], 1741 | "license": "MIT", 1742 | "dependencies": { 1743 | "nanoid": "^3.3.8", 1744 | "picocolors": "^1.1.1", 1745 | "source-map-js": "^1.2.1" 1746 | }, 1747 | "engines": { 1748 | "node": "^10 || ^12 || >=14" 1749 | } 1750 | }, 1751 | "node_modules/postcss-value-parser": { 1752 | "version": "4.2.0", 1753 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 1754 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 1755 | "dev": true, 1756 | "license": "MIT" 1757 | }, 1758 | "node_modules/proxy-from-env": { 1759 | "version": "1.1.0", 1760 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 1761 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", 1762 | "dev": true, 1763 | "license": "MIT" 1764 | }, 1765 | "node_modules/require-directory": { 1766 | "version": "2.1.1", 1767 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", 1768 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", 1769 | "dev": true, 1770 | "license": "MIT", 1771 | "engines": { 1772 | "node": ">=0.10.0" 1773 | } 1774 | }, 1775 | "node_modules/rollup": { 1776 | "version": "4.32.0", 1777 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.32.0.tgz", 1778 | "integrity": "sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==", 1779 | "license": "MIT", 1780 | "dependencies": { 1781 | "@types/estree": "1.0.6" 1782 | }, 1783 | "bin": { 1784 | "rollup": "dist/bin/rollup" 1785 | }, 1786 | "engines": { 1787 | "node": ">=18.0.0", 1788 | "npm": ">=8.0.0" 1789 | }, 1790 | "optionalDependencies": { 1791 | "@rollup/rollup-android-arm-eabi": "4.32.0", 1792 | "@rollup/rollup-android-arm64": "4.32.0", 1793 | "@rollup/rollup-darwin-arm64": "4.32.0", 1794 | "@rollup/rollup-darwin-x64": "4.32.0", 1795 | "@rollup/rollup-freebsd-arm64": "4.32.0", 1796 | "@rollup/rollup-freebsd-x64": "4.32.0", 1797 | "@rollup/rollup-linux-arm-gnueabihf": "4.32.0", 1798 | "@rollup/rollup-linux-arm-musleabihf": "4.32.0", 1799 | "@rollup/rollup-linux-arm64-gnu": "4.32.0", 1800 | "@rollup/rollup-linux-arm64-musl": "4.32.0", 1801 | "@rollup/rollup-linux-loongarch64-gnu": "4.32.0", 1802 | "@rollup/rollup-linux-powerpc64le-gnu": "4.32.0", 1803 | "@rollup/rollup-linux-riscv64-gnu": "4.32.0", 1804 | "@rollup/rollup-linux-s390x-gnu": "4.32.0", 1805 | "@rollup/rollup-linux-x64-gnu": "4.32.0", 1806 | "@rollup/rollup-linux-x64-musl": "4.32.0", 1807 | "@rollup/rollup-win32-arm64-msvc": "4.32.0", 1808 | "@rollup/rollup-win32-ia32-msvc": "4.32.0", 1809 | "@rollup/rollup-win32-x64-msvc": "4.32.0", 1810 | "fsevents": "~2.3.2" 1811 | } 1812 | }, 1813 | "node_modules/rxjs": { 1814 | "version": "7.8.1", 1815 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", 1816 | "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", 1817 | "dev": true, 1818 | "license": "Apache-2.0", 1819 | "dependencies": { 1820 | "tslib": "^2.1.0" 1821 | } 1822 | }, 1823 | "node_modules/shell-quote": { 1824 | "version": "1.8.2", 1825 | "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", 1826 | "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", 1827 | "dev": true, 1828 | "license": "MIT", 1829 | "engines": { 1830 | "node": ">= 0.4" 1831 | }, 1832 | "funding": { 1833 | "url": "https://github.com/sponsors/ljharb" 1834 | } 1835 | }, 1836 | "node_modules/source-map-js": { 1837 | "version": "1.2.1", 1838 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 1839 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 1840 | "license": "BSD-3-Clause", 1841 | "engines": { 1842 | "node": ">=0.10.0" 1843 | } 1844 | }, 1845 | "node_modules/supports-color": { 1846 | "version": "8.1.1", 1847 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 1848 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 1849 | "dev": true, 1850 | "license": "MIT", 1851 | "dependencies": { 1852 | "has-flag": "^4.0.0" 1853 | }, 1854 | "engines": { 1855 | "node": ">=10" 1856 | }, 1857 | "funding": { 1858 | "url": "https://github.com/chalk/supports-color?sponsor=1" 1859 | } 1860 | }, 1861 | "node_modules/tailwindcss": { 1862 | "version": "4.0.0", 1863 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.0.tgz", 1864 | "integrity": "sha512-ULRPI3A+e39T7pSaf1xoi58AqqJxVCLg8F/uM5A3FadUbnyDTgltVnXJvdkTjwCOGA6NazqHVcwPJC5h2vRYVQ==", 1865 | "license": "MIT" 1866 | }, 1867 | "node_modules/tapable": { 1868 | "version": "2.2.1", 1869 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 1870 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 1871 | "license": "MIT", 1872 | "engines": { 1873 | "node": ">=6" 1874 | } 1875 | }, 1876 | "node_modules/tree-kill": { 1877 | "version": "1.2.2", 1878 | "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", 1879 | "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", 1880 | "dev": true, 1881 | "license": "MIT", 1882 | "bin": { 1883 | "tree-kill": "cli.js" 1884 | } 1885 | }, 1886 | "node_modules/tslib": { 1887 | "version": "2.8.1", 1888 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 1889 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 1890 | "dev": true, 1891 | "license": "0BSD" 1892 | }, 1893 | "node_modules/update-browserslist-db": { 1894 | "version": "1.1.2", 1895 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", 1896 | "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", 1897 | "dev": true, 1898 | "funding": [ 1899 | { 1900 | "type": "opencollective", 1901 | "url": "https://opencollective.com/browserslist" 1902 | }, 1903 | { 1904 | "type": "tidelift", 1905 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1906 | }, 1907 | { 1908 | "type": "github", 1909 | "url": "https://github.com/sponsors/ai" 1910 | } 1911 | ], 1912 | "license": "MIT", 1913 | "dependencies": { 1914 | "escalade": "^3.2.0", 1915 | "picocolors": "^1.1.1" 1916 | }, 1917 | "bin": { 1918 | "update-browserslist-db": "cli.js" 1919 | }, 1920 | "peerDependencies": { 1921 | "browserslist": ">= 4.21.0" 1922 | } 1923 | }, 1924 | "node_modules/vite": { 1925 | "version": "6.0.11", 1926 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz", 1927 | "integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==", 1928 | "license": "MIT", 1929 | "dependencies": { 1930 | "esbuild": "^0.24.2", 1931 | "postcss": "^8.4.49", 1932 | "rollup": "^4.23.0" 1933 | }, 1934 | "bin": { 1935 | "vite": "bin/vite.js" 1936 | }, 1937 | "engines": { 1938 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 1939 | }, 1940 | "funding": { 1941 | "url": "https://github.com/vitejs/vite?sponsor=1" 1942 | }, 1943 | "optionalDependencies": { 1944 | "fsevents": "~2.3.3" 1945 | }, 1946 | "peerDependencies": { 1947 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 1948 | "jiti": ">=1.21.0", 1949 | "less": "*", 1950 | "lightningcss": "^1.21.0", 1951 | "sass": "*", 1952 | "sass-embedded": "*", 1953 | "stylus": "*", 1954 | "sugarss": "*", 1955 | "terser": "^5.16.0", 1956 | "tsx": "^4.8.1", 1957 | "yaml": "^2.4.2" 1958 | }, 1959 | "peerDependenciesMeta": { 1960 | "@types/node": { 1961 | "optional": true 1962 | }, 1963 | "jiti": { 1964 | "optional": true 1965 | }, 1966 | "less": { 1967 | "optional": true 1968 | }, 1969 | "lightningcss": { 1970 | "optional": true 1971 | }, 1972 | "sass": { 1973 | "optional": true 1974 | }, 1975 | "sass-embedded": { 1976 | "optional": true 1977 | }, 1978 | "stylus": { 1979 | "optional": true 1980 | }, 1981 | "sugarss": { 1982 | "optional": true 1983 | }, 1984 | "terser": { 1985 | "optional": true 1986 | }, 1987 | "tsx": { 1988 | "optional": true 1989 | }, 1990 | "yaml": { 1991 | "optional": true 1992 | } 1993 | } 1994 | }, 1995 | "node_modules/vite-plugin-full-reload": { 1996 | "version": "1.2.0", 1997 | "resolved": "https://registry.npmjs.org/vite-plugin-full-reload/-/vite-plugin-full-reload-1.2.0.tgz", 1998 | "integrity": "sha512-kz18NW79x0IHbxRSHm0jttP4zoO9P9gXh+n6UTwlNKnviTTEpOlum6oS9SmecrTtSr+muHEn5TUuC75UovQzcA==", 1999 | "dev": true, 2000 | "license": "MIT", 2001 | "dependencies": { 2002 | "picocolors": "^1.0.0", 2003 | "picomatch": "^2.3.1" 2004 | } 2005 | }, 2006 | "node_modules/y18n": { 2007 | "version": "5.0.8", 2008 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", 2009 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", 2010 | "dev": true, 2011 | "license": "ISC", 2012 | "engines": { 2013 | "node": ">=10" 2014 | } 2015 | }, 2016 | "node_modules/yaml": { 2017 | "version": "2.7.0", 2018 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", 2019 | "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", 2020 | "license": "ISC", 2021 | "optional": true, 2022 | "peer": true, 2023 | "bin": { 2024 | "yaml": "bin.mjs" 2025 | }, 2026 | "engines": { 2027 | "node": ">= 14" 2028 | } 2029 | }, 2030 | "node_modules/yargs": { 2031 | "version": "17.7.2", 2032 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", 2033 | "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", 2034 | "dev": true, 2035 | "license": "MIT", 2036 | "dependencies": { 2037 | "cliui": "^8.0.1", 2038 | "escalade": "^3.1.1", 2039 | "get-caller-file": "^2.0.5", 2040 | "require-directory": "^2.1.1", 2041 | "string-width": "^4.2.3", 2042 | "y18n": "^5.0.5", 2043 | "yargs-parser": "^21.1.1" 2044 | }, 2045 | "engines": { 2046 | "node": ">=12" 2047 | } 2048 | }, 2049 | "node_modules/yargs-parser": { 2050 | "version": "21.1.1", 2051 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", 2052 | "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", 2053 | "dev": true, 2054 | "license": "ISC", 2055 | "engines": { 2056 | "node": ">=12" 2057 | } 2058 | }, 2059 | "node_modules/yargs/node_modules/ansi-regex": { 2060 | "version": "5.0.1", 2061 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2062 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2063 | "dev": true, 2064 | "license": "MIT", 2065 | "engines": { 2066 | "node": ">=8" 2067 | } 2068 | }, 2069 | "node_modules/yargs/node_modules/emoji-regex": { 2070 | "version": "8.0.0", 2071 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 2072 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 2073 | "dev": true, 2074 | "license": "MIT" 2075 | }, 2076 | "node_modules/yargs/node_modules/string-width": { 2077 | "version": "4.2.3", 2078 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2079 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2080 | "dev": true, 2081 | "license": "MIT", 2082 | "dependencies": { 2083 | "emoji-regex": "^8.0.0", 2084 | "is-fullwidth-code-point": "^3.0.0", 2085 | "strip-ansi": "^6.0.1" 2086 | }, 2087 | "engines": { 2088 | "node": ">=8" 2089 | } 2090 | }, 2091 | "node_modules/yargs/node_modules/strip-ansi": { 2092 | "version": "6.0.1", 2093 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2094 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2095 | "dev": true, 2096 | "license": "MIT", 2097 | "dependencies": { 2098 | "ansi-regex": "^5.0.1" 2099 | }, 2100 | "engines": { 2101 | "node": ">=8" 2102 | } 2103 | } 2104 | } 2105 | } 2106 | -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "type": "module", 4 | "scripts": { 5 | "build": "vite build", 6 | "dev": "vite" 7 | }, 8 | "devDependencies": { 9 | "autoprefixer": "^10.4.20", 10 | "axios": "^1.7.9", 11 | "concurrently": "^9.1.2", 12 | "laravel-vite-plugin": "^1.2", 13 | "vite": "^6.0" 14 | }, 15 | "dependencies": { 16 | "tailwindcss": "^4.0.0", 17 | "@tailwindcss/vite": "^4.0.0" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /backend/phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | tests/Unit 10 | 11 | 12 | tests/Feature 13 | 14 | 15 | 16 | 17 | app 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /backend/public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 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 | 26 | -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/ed4ce77420f8b69ba44b9a32c6116def84f17738/backend/public/favicon.ico -------------------------------------------------------------------------------- /backend/public/index.php: -------------------------------------------------------------------------------- 1 | handleRequest(Request::capture()); 18 | -------------------------------------------------------------------------------- /backend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /backend/resources/css/app.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | @source "../views"; 3 | -------------------------------------------------------------------------------- /backend/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /backend/resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | window.axios = axios; 3 | 4 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 5 | -------------------------------------------------------------------------------- /backend/resources/views/components/main-layout.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {{ $title ?? 'Backend' }} 7 | @vite('resources/css/app.css') 8 | 9 | 10 |
11 | {{ $slot }} 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /backend/resources/views/upload.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Upload a File to Backend 4 | 5 | 6 |

Upload a File

7 | 8 | @if (session('success')) 9 |

{{ session('success') }}

10 | @endif 11 | 12 | @if ($errors->any()) 13 |

{{ $errors->first() }}

14 | @endif 15 | 16 |
17 | @csrf 18 | 19 | 20 | 21 |
22 |
23 | -------------------------------------------------------------------------------- /backend/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Laravel 8 | 9 | 10 | 11 | 12 | 13 | 14 | @if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot'))) 15 | @vite(['resources/css/app.css', 'resources/js/app.js']) 16 | @else 17 | 20 | @endif 21 | 22 | 23 |
24 | Laravel background 25 |
26 |
27 |
28 |
29 | 30 |
31 | @if (Route::has('login')) 32 | 58 | @endif 59 |
60 | 61 |
62 | 167 |
168 | 169 |
170 | Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) 171 |
172 |
173 |
174 |
175 | 176 | 177 | -------------------------------------------------------------------------------- /backend/routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 8 | })->purpose('Display an inspiring quote')->hourly(); 9 | -------------------------------------------------------------------------------- /backend/routes/web.php: -------------------------------------------------------------------------------- 1 | app()->version(), 'env' => Config::get('APP_ENV')]; 10 | }); 11 | 12 | Route::get('/upload', function () { 13 | return view('upload'); 14 | }); 15 | 16 | Route::post('/upload', function (Request $request) { 17 | $request->validate([ 18 | 'file' => 'required|file|max:2048', // Max file size: 2MB 19 | ]); 20 | 21 | if ($request->file('file')->isValid()) { 22 | $path = $request->file('file')->store('uploads', 'public'); 23 | 24 | dispatch(new LogCreatedUser()); 25 | 26 | return back()->with('success', 'File uploaded successfully to: ' . $path); 27 | } 28 | 29 | return back()->withErrors('File upload failed.'); 30 | }); 31 | 32 | -------------------------------------------------------------------------------- /backend/scripts/php-fpm-entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | main() { 4 | if [ "$IS_WORKER" = "true" ]; then 5 | exec "$@" 6 | else 7 | prepare_file_permissions 8 | run_npm_build 9 | prepare_storage 10 | wait_for_db 11 | run_migrations 12 | optimize_app 13 | run_server "$@" 14 | fi 15 | } 16 | 17 | prepare_file_permissions() { 18 | chmod a+x ./artisan 19 | } 20 | 21 | run_npm_build() { 22 | echo "Installing NPM dependencies" 23 | if [ -f "package.json" ]; then 24 | echo "Running NPM clean install" 25 | npm ci 26 | 27 | echo "Running NPM build" 28 | npm run build 29 | else 30 | echo "No package.json found, skipping NPM build" 31 | fi 32 | } 33 | 34 | prepare_storage() { 35 | # Create required directories for Laravel 36 | mkdir -p /usr/share/nginx/html/storage/framework/cache/data 37 | mkdir -p /usr/share/nginx/html/storage/framework/sessions 38 | mkdir -p /usr/share/nginx/html/storage/framework/views 39 | 40 | # Set permissions for the storage directory 41 | chown -R www-data:www-data /usr/share/nginx/html/storage 42 | chmod -R 775 /usr/share/nginx/html/storage 43 | 44 | # Ensure the symlink exists 45 | php artisan storage:link 46 | } 47 | 48 | wait_for_db() { 49 | echo "Waiting for DB to be ready" 50 | until ./artisan migrate:status 2>&1 | grep -q -E "(Migration table not found|Migration name)"; do 51 | sleep 1 52 | done 53 | } 54 | 55 | run_migrations() { 56 | ./artisan migrate 57 | } 58 | 59 | optimize_app() { 60 | ./artisan optimize:clear 61 | ./artisan optimize 62 | } 63 | 64 | run_server() { 65 | exec /usr/local/bin/docker-php-entrypoint "$@" 66 | } 67 | 68 | main "$@" 69 | -------------------------------------------------------------------------------- /backend/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !private/ 3 | !public/ 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /backend/storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /backend/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /backend/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/tailwind.config.js: -------------------------------------------------------------------------------- 1 | import defaultTheme from 'tailwindcss/defaultTheme'; 2 | 3 | /** @type {import('tailwindcss').Config} */ 4 | export default { 5 | content: [ 6 | './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', 7 | './storage/framework/views/*.php', 8 | './resources/**/*.blade.php', 9 | './resources/**/*.js', 10 | './resources/**/*.vue', 11 | ], 12 | theme: { 13 | extend: { 14 | fontFamily: { 15 | sans: ['Figtree', ...defaultTheme.fontFamily.sans], 16 | }, 17 | }, 18 | }, 19 | plugins: [], 20 | }; 21 | -------------------------------------------------------------------------------- /backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 5 | 6 | $response->assertStatus(200); 7 | }); 8 | -------------------------------------------------------------------------------- /backend/tests/Pest.php: -------------------------------------------------------------------------------- 1 | extend(Tests\TestCase::class) 15 | // ->use(Illuminate\Foundation\Testing\RefreshDatabase::class) 16 | ->in('Feature'); 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Expectations 21 | |-------------------------------------------------------------------------- 22 | | 23 | | When you're writing tests, you often need to check that values meet certain conditions. The 24 | | "expect()" function gives you access to a set of "expectations" methods that you can use 25 | | to assert different things. Of course, you may extend the Expectation API at any time. 26 | | 27 | */ 28 | 29 | expect()->extend('toBeOne', function () { 30 | return $this->toBe(1); 31 | }); 32 | 33 | /* 34 | |-------------------------------------------------------------------------- 35 | | Functions 36 | |-------------------------------------------------------------------------- 37 | | 38 | | While Pest is very powerful out-of-the-box, you may have some testing code specific to your 39 | | project that you don't want to repeat in every file. Here you can also expose helpers as 40 | | global functions to help you to reduce the number of lines of code in your test files. 41 | | 42 | */ 43 | 44 | function something() 45 | { 46 | // .. 47 | } 48 | -------------------------------------------------------------------------------- /backend/tests/TestCase.php: -------------------------------------------------------------------------------- 1 | toBeTrue(); 5 | }); 6 | -------------------------------------------------------------------------------- /backend/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import laravel from 'laravel-vite-plugin'; 3 | import tailwindcss from '@tailwindcss/vite' 4 | 5 | export default defineConfig({ 6 | plugins: [ 7 | tailwindcss(), 8 | laravel({ 9 | input: ['resources/css/app.css', 'resources/js/app.js'], 10 | refresh: true, 11 | }), 12 | ], 13 | }); 14 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | services: 2 | app: 3 | build: 4 | context: ./backend 5 | dockerfile: Dockerfile 6 | restart: unless-stopped 7 | ports: 8 | - 9000:9000 9 | depends_on: 10 | - db 11 | env_file: 12 | - ./backend/.env 13 | volumes: 14 | - storage:/usr/share/nginx/html/storage:rw 15 | - public:/usr/share/nginx/html/public:rw 16 | queue-worker: 17 | build: 18 | context: ./backend 19 | dockerfile: Dockerfile 20 | restart: unless-stopped 21 | command: php artisan queue:work 22 | environment: 23 | IS_WORKER: "true" 24 | env_file: 25 | - ./backend/.env 26 | depends_on: 27 | - db 28 | - redis 29 | volumes: 30 | - storage:/usr/share/nginx/html/storage:rw 31 | - public:/usr/share/nginx/html/public:rw 32 | nginx: 33 | image: nginx:1-alpine 34 | ports: 35 | - 80:80 36 | - 443:443 37 | volumes: 38 | - ./nginx.conf:/etc/nginx/templates/default.conf.template 39 | - storage:/usr/share/nginx/html/storage:rw 40 | - public:/usr/share/nginx/html/public:ro 41 | db: 42 | image: bitnami/postgresql:16.3.0 43 | platform: linux/amd64 44 | ports: 45 | - 5432:5432 46 | restart: always 47 | volumes: 48 | - db-data:/bitnami/postgresql 49 | environment: 50 | - POSTGRESQL_DATABASE=${POSTGRESQL_DATABASE} 51 | - POSTGRESQL_USERNAME=${POSTGRESQL_USERNAME} 52 | - POSTGRESQL_PASSWORD=${POSTGRESQL_PASSWORD} 53 | redis: 54 | image: bitnami/redis:7.2 55 | platform: linux/amd64 56 | ports: 57 | - 6379:6379 58 | restart: always 59 | volumes: 60 | - redis-data:/bitnami/redis/data 61 | environment: 62 | - ALLOW_EMPTY_PASSWORD=no 63 | - REDIS_PASSWORD=${REDIS_PASSWORD} 64 | - REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL 65 | 66 | volumes: 67 | storage: 68 | public: 69 | db-data: 70 | redis-data: 71 | -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | server_name localhost; 4 | root /usr/share/nginx/html/public; 5 | 6 | access_log /dev/stdout; 7 | error_log /dev/stderr error; 8 | 9 | index index.html index.htm index.php; 10 | 11 | location / { 12 | try_files $uri $uri/ /index.php$is_args$args; 13 | } 14 | 15 | location /storage/ { 16 | alias /usr/share/nginx/html/storage/app/public/; 17 | access_log off; 18 | expires max; 19 | add_header Cache-Control "public"; 20 | } 21 | 22 | location ~ \.php$ { 23 | fastcgi_split_path_info ^(.+\.php)(/.+)$; 24 | fastcgi_pass app:9000; 25 | fastcgi_index index.php; 26 | include fastcgi.conf; 27 | include fastcgi_params; 28 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; 29 | } 30 | } 31 | --------------------------------------------------------------------------------