From 5c667fd1cff8a7312cefd09e70a023475ae9d015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=BCnther?= Date: Thu, 2 Jul 2026 15:52:13 +0200 Subject: [PATCH] laravel running --- .editorconfig | 18 + .env.example | 48 + .gitattributes | 11 + .gitignore | 21 + .idea/php.xml | 1 + Makefile | 9 + .../Controllers/DashboardController.php | 17 + app/Domains/Dashboard/Routes/api.php | 3 + app/Domains/Dashboard/Routes/web.php | 6 + app/Domains/Dashboard/Views/Dashboard.vue | 12 + app/Http/Controllers/Controller.php | 8 + app/Models/User.php | 31 + app/Providers/AppServiceProvider.php | 19 + app/Providers/InertiaProvider.php | 30 + artisan | 15 + bootstrap/app.php | 19 + bootstrap/cache/.gitignore | 2 + bootstrap/providers.php | 5 + composer.json | 86 + composer.lock | 8311 +++++++++++++++++ config/app.php | 25 + config/auth.php | 35 + config/cache.php | 40 + config/database.php | 73 + config/filesystems.php | 32 + config/logging.php | 60 + config/mail.php | 37 + config/queue.php | 35 + config/services.php | 26 + config/session.php | 24 + database/.gitignore | 3 + database/factories/UserFactory.php | 30 + .../0001_01_01_000000_create_users_table.php | 43 + .../0001_01_01_000001_create_cache_table.php | 29 + .../0001_01_01_000002_create_jobs_table.php | 51 + database/seeders/DatabaseSeeder.php | 13 + ...eike.local-key.pem => nexus.local-key.pem} | 0 .../{mareike.local.pem => nexus.local.pem} | 0 justfile | 51 + package-lock.json | 3108 ++++++ package.json | 31 + phpunit.xml | 33 + public/.htaccess | 21 + public/index.php | 17 + public/robots.txt | 2 + resources/css/app.css | 9 + resources/js/app.js | 56 + resources/js/bootstrap.js | 4 + resources/js/layouts/AppLayout.vue | 293 + resources/views/app.blade.php | 15 + routes/api.php | 5 + routes/console.php | 8 + routes/web.php | 5 + storage/app/.gitignore | 3 + storage/app/public/.gitignore | 2 + storage/framework/cache/data/.gitignore | 2 + storage/framework/sessions/.gitignore | 2 + storage/framework/testing/.gitignore | 2 + storage/framework/views/.gitignore | 2 + storage/logs/.gitignore | 2 + tests/TestCase.php | 10 + vite.config.js | 26 + 62 files changed, 12937 insertions(+) create mode 100644 .editorconfig create mode 100644 .env.example create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 app/Domains/Dashboard/Controllers/DashboardController.php create mode 100644 app/Domains/Dashboard/Routes/api.php create mode 100644 app/Domains/Dashboard/Routes/web.php create mode 100644 app/Domains/Dashboard/Views/Dashboard.vue create mode 100644 app/Http/Controllers/Controller.php create mode 100644 app/Models/User.php create mode 100644 app/Providers/AppServiceProvider.php create mode 100644 app/Providers/InertiaProvider.php create mode 100644 artisan create mode 100644 bootstrap/app.php create mode 100644 bootstrap/cache/.gitignore create mode 100644 bootstrap/providers.php create mode 100644 composer.json create mode 100644 composer.lock create mode 100644 config/app.php create mode 100644 config/auth.php create mode 100644 config/cache.php create mode 100644 config/database.php create mode 100644 config/filesystems.php create mode 100644 config/logging.php create mode 100644 config/mail.php create mode 100644 config/queue.php create mode 100644 config/services.php create mode 100644 config/session.php create mode 100644 database/.gitignore create mode 100644 database/factories/UserFactory.php create mode 100644 database/migrations/0001_01_01_000000_create_users_table.php create mode 100644 database/migrations/0001_01_01_000001_create_cache_table.php create mode 100644 database/migrations/0001_01_01_000002_create_jobs_table.php create mode 100644 database/seeders/DatabaseSeeder.php rename docker/ssl/{mareike.local-key.pem => nexus.local-key.pem} (100%) rename docker/ssl/{mareike.local.pem => nexus.local.pem} (100%) create mode 100644 justfile create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 phpunit.xml create mode 100644 public/.htaccess create mode 100644 public/index.php create mode 100644 public/robots.txt create mode 100644 resources/css/app.css create mode 100644 resources/js/app.js create mode 100644 resources/js/bootstrap.js create mode 100644 resources/js/layouts/AppLayout.vue create mode 100644 resources/views/app.blade.php create mode 100644 routes/api.php create mode 100644 routes/console.php create mode 100644 routes/web.php create mode 100644 storage/app/.gitignore create mode 100644 storage/app/public/.gitignore create mode 100644 storage/framework/cache/data/.gitignore create mode 100644 storage/framework/sessions/.gitignore create mode 100644 storage/framework/testing/.gitignore create mode 100644 storage/framework/views/.gitignore create mode 100644 storage/logs/.gitignore create mode 100644 tests/TestCase.php create mode 100644 vite.config.js diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8f0de65 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..255d0c4 --- /dev/null +++ b/.env.example @@ -0,0 +1,48 @@ +APP_NAME=Nexus +APP_ENV=local +APP_KEY= +APP_DEBUG=true +APP_URL=https://nexus.local + +APP_LOCALE=de +APP_FALLBACK_LOCALE=de +APP_FAKER_LOCALE=de_DE + +APP_MAINTENANCE_DRIVER=file + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=nexus +DB_USERNAME=root +DB_PASSWORD= + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database + +MAIL_MAILER=log +MAIL_SCHEME=null +MAIL_HOST=127.0.0.1 +MAIL_PORT=2525 +MAIL_USERNAME=null +MAIL_PASSWORD=null +MAIL_FROM_ADDRESS="hello@example.com" +MAIL_FROM_NAME="${APP_NAME}" + +VITE_APP_NAME="${APP_NAME}" diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fcb21d3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto eol=lf + +*.blade.php diff=html +*.css diff=css +*.html diff=html +*.md diff=markdown +*.php diff=php + +/.github export-ignore +CHANGELOG.md export-ignore +.styleci.yml export-ignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e75fbc2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,21 @@ +/.phpunit.cache +/node_modules +/public/build +/public/hot +/public/storage +/storage/*.key +/storage/pail +/vendor +.env +.env.backup +.env.production +.phpactor.json +auth.json +Homestead.json +Homestead.yaml +npm-debug.log +yarn-error.log +/.fleet +/.idea +/.nova +/.vscode diff --git a/.idea/php.xml b/.idea/php.xml index f324872..8d4f284 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -10,6 +10,7 @@