├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/README.md -------------------------------------------------------------------------------- /backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/.editorconfig -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/.gitattributes -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /backend/app/Jobs/LogCreatedUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/app/Jobs/LogCreatedUser.php -------------------------------------------------------------------------------- /backend/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/app/Models/User.php -------------------------------------------------------------------------------- /backend/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /backend/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/artisan -------------------------------------------------------------------------------- /backend/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/bootstrap/app.php -------------------------------------------------------------------------------- /backend/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/bootstrap/providers.php -------------------------------------------------------------------------------- /backend/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/composer.json -------------------------------------------------------------------------------- /backend/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/composer.lock -------------------------------------------------------------------------------- /backend/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/app.php -------------------------------------------------------------------------------- /backend/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/auth.php -------------------------------------------------------------------------------- /backend/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/cache.php -------------------------------------------------------------------------------- /backend/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/database.php -------------------------------------------------------------------------------- /backend/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/filesystems.php -------------------------------------------------------------------------------- /backend/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/logging.php -------------------------------------------------------------------------------- /backend/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/mail.php -------------------------------------------------------------------------------- /backend/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/queue.php -------------------------------------------------------------------------------- /backend/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/services.php -------------------------------------------------------------------------------- /backend/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/config/session.php -------------------------------------------------------------------------------- /backend/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /backend/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/database/factories/UserFactory.php -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /backend/database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /backend/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/phpunit.xml -------------------------------------------------------------------------------- /backend/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/public/.htaccess -------------------------------------------------------------------------------- /backend/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/public/index.php -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/resources/js/bootstrap.js -------------------------------------------------------------------------------- /backend/resources/views/components/main-layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/resources/views/components/main-layout.blade.php -------------------------------------------------------------------------------- /backend/resources/views/upload.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/resources/views/upload.blade.php -------------------------------------------------------------------------------- /backend/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /backend/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/routes/console.php -------------------------------------------------------------------------------- /backend/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/routes/web.php -------------------------------------------------------------------------------- /backend/scripts/php-fpm-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/scripts/php-fpm-entrypoint -------------------------------------------------------------------------------- /backend/storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/storage/app/.gitignore -------------------------------------------------------------------------------- /backend/storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /backend/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/storage/framework/.gitignore -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/tailwind.config.js -------------------------------------------------------------------------------- /backend/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /backend/tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/tests/Pest.php -------------------------------------------------------------------------------- /backend/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/tests/TestCase.php -------------------------------------------------------------------------------- /backend/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /backend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/backend/vite.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenacity-Dev/laravel-docker-production/HEAD/nginx.conf --------------------------------------------------------------------------------