diff --git a/.devcontainer/install-dependencies.sh b/.devcontainer/install-dependencies.sh old mode 100644 new mode 100755 diff --git a/README.md b/README.md index 75c347a..43071e4 100644 --- a/README.md +++ b/README.md @@ -1,61 +1,97 @@ -
+# Example PHP Laravel Application - +This is a Laravel-based PHP application that serves as an example project. -## About Laravel +## Requirements -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: +- PHP 8.2 or higher +- Composer +- Node.js & NPM +- Database (MySQL, PostgreSQL, SQLite) -- [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). +## Installation -Laravel is accessible, powerful, and provides tools required for large, robust applications. +1. Clone the repository: + ```bash + git clone https://github.com/your-username/example-php.git + cd example-php + ``` -## Learning Laravel +2. Install PHP dependencies: + ```bash + composer install + ``` -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. +3. Install JavaScript dependencies: + ```bash + npm install + ``` -You may also try the [Laravel Bootcamp](https://bootcamp.laravel.com), where you will be guided through building a modern Laravel application from scratch. +4. Create environment file: + ```bash + cp .env.example .env + ``` -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of 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. +5. Generate application key: + ```bash + php artisan key:generate + ``` -## Laravel Sponsors +6. Configure your database in the `.env` file: + ``` + DB_CONNECTION=mysql + DB_HOST=127.0.0.1 + DB_PORT=3306 + DB_DATABASE=example_php + DB_USERNAME=root + DB_PASSWORD= + ``` -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 Partners program](https://partners.laravel.com). +7. Run database migrations: + ```bash + php artisan migrate + ``` -### Premium Partners +## Development -- **[Vehikl](https://vehikl.com)** -- **[Tighten Co.](https://tighten.co)** -- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** -- **[64 Robots](https://64robots.com)** -- **[Curotec](https://www.curotec.com/services/technologies/laravel)** -- **[DevSquad](https://devsquad.com/hire-laravel-developers)** -- **[Redberry](https://redberry.international/laravel-development)** -- **[Active Logic](https://activelogic.com)** +Start the development server: -## Contributing +```bash +composer dev +``` -Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). +This will concurrently run: +- Laravel development server +- Queue worker +- Log viewer +- Vite for frontend assets -## Code of Conduct +Alternatively, you can run each service separately: -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). +```bash +# Laravel server +php artisan serve -## Security Vulnerabilities +# Queue worker +php artisan queue:listen --tries=1 -If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. +# Log viewer +php artisan pail --timeout=0 + +# Frontend assets +npm run dev +``` + +## Testing + +Run the test suite: + +```bash +composer test +``` + +This project uses Pest PHP for testing. ## License -The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). +This project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).