Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jujudje06/laravel_10-vue_3-typescript-inertia-jetstream
Dockerized starter
https://github.com/jujudje06/laravel_10-vue_3-typescript-inertia-jetstream
docker docker-compose https https-proxy inertia jetstream laravel laravel10x nginx-proxy php83 starter-project vue3
Last synced: 1 day ago
JSON representation
Dockerized starter
- Host: GitHub
- URL: https://github.com/jujudje06/laravel_10-vue_3-typescript-inertia-jetstream
- Owner: jujudje06
- Created: 2024-03-09T20:03:18.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-09T23:24:01.000Z (9 months ago)
- Last Synced: 2024-10-13T13:02:08.507Z (about 1 month ago)
- Topics: docker, docker-compose, https, https-proxy, inertia, jetstream, laravel, laravel10x, nginx-proxy, php83, starter-project, vue3
- Language: PHP
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# This repo is a fork of [refactorian/laravel-docker](https://github.com/refactorian/laravel-docker)
Thanks to the great job already done, i added:
- https support with a reverse proxy + self-signed certificates.
- PHP 8.3
- Node.js 20.x
- Vuejs 3
- Typescript
- Inertia
- Jetstream
- IDE Helper# Laravel Docker Starter Kit
- Laravel v10.x
- PHP v8.3.x
- MySQL v8.1
- phpMyAdmin v5.x
- Mailpit v1.x
- Node.js v20.x
- NPM v10.x
- Yarn v1.x
- Vite v5.x
- Rector v1.x
- Redis v7.2.x# Requirements
- Stable version of [Docker](https://docs.docker.com/engine/install/)
- Compatible version of [Docker Compose](https://docs.docker.com/compose/install/#install-compose)# How To Deploy
Edit your hosts file and add the following DNS
```
127.0.0.1 laravel.dev.fr
127.0.0.1 laravel.pma.fr
```
*You can customize urls, but don't forget to adapt them in the `docker-compose.yml` file!*Then you can run the containers:
```shell
docker compose up -d --build
```# Notes
### Laravel App
- URL: [https://laravel.dev.fr](https://laravel.dev.fr)### phpMyAdmin
- URL: [https://laravel.pma.fr](https://laravel.pma.fr)
- Server: `db_mysql`
- Username: `refactorian`
- Password: `refactorian`
- Database: `refactorian`### Basic docker compose commands
- Build or rebuild services
- `docker compose build`
- Create and start containers
- `docker compose up -d`
- Stop and remove containers, networks
- `docker compose down`
- Stop all services
- `docker compose stop`
- Restart service containers
- `docker compose restart`
- Run a command inside a container
- `docker compose exec [container] [command]`### Useful Laravel Commands
- Display basic information about your application
- `php artisan about`
- Remove the configuration cache file
- `php artisan config:clear`
- Flush the application cache
- `php artisan cache:clear`
- Clear all cached events and listeners
- `php artisan event:clear`
- Delete all of the jobs from the specified queue
- `php artisan queue:clear`
- Remove the route cache file
- `php artisan route:clear`
- Clear all compiled view files
- `php artisan view:clear`
- Remove the compiled class file
- `php artisan clear-compiled`
- Remove the cached bootstrap files
- `php artisan optimize:clear`
- Delete the cached mutex files created by scheduler
- `php artisan schedule:clear-cache`
- Flush expired password reset tokens
- `php artisan auth:clear-resets`### Laravel Pint (Code Style Fixer | PHP-CS-Fixer)
- Format all files
- `vendor/bin/pint`
- Format specific files or directories
- `vendor/bin/pint app/Models`
- `vendor/bin/pint app/Models/User.php`
- Format all files with preview
- `vendor/bin/pint -v`
- Format uncommitted changes according to Git
- `vendor/bin/pint --dirty`
- Inspect all files
- `vendor/bin/pint --test`### Rector
- Dry Run
- `vendor/bin/rector process --dry-run`
- Process
- `vendor/bin/rector process`---
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).Laravel is accessible, powerful, and provides tools required for large, robust applications.
## Learning Laravel
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch.
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
## Laravel Sponsors
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
### Premium Partners
- **[Vehikl](https://vehikl.com/)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Cubet Techno Labs](https://cubettech.com)**
- **[Cyber-Duck](https://cyber-duck.co.uk)**
- **[Many](https://www.many.co.uk)**
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
- **[DevSquad](https://devsquad.com)**
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
- **[OP.GG](https://op.gg)**
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
- **[Lendio](https://lendio.com)**## Contributing
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
## Code of Conduct
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
## Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).