Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/padupe/php-laravel-10
Repository for initial studies with the Laravel framework.
https://github.com/padupe/php-laravel-10
laravel laravel-framework php8
Last synced: 11 days ago
JSON representation
Repository for initial studies with the Laravel framework.
- Host: GitHub
- URL: https://github.com/padupe/php-laravel-10
- Owner: padupe
- Created: 2023-10-10T10:57:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-12T11:53:48.000Z (10 months ago)
- Last Synced: 2024-10-05T10:41:11.191Z (about 1 month ago)
- Topics: laravel, laravel-framework, php8
- Language: PHP
- Homepage:
- Size: 92.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# php-laravel-10
Repository for initial studies with the Laravel framework.## Index
- [Documentation - Laravel10](https://laravel.com/docs/10.x)
- [Technologies](#technologies)## Technologies
- [Docker](https://www.docker.com/)
- [Laravel v10](https://laravel.com/)
- [PHP v8.1](https://www.php.net/)## Getting started
1. Clone this repository
```bash
git clone [email protected]:padupe/php-laravel-10.git
```2. Access the directory:
```bash
cd php-laravel-10
```3. Make a `.env` file:
```bash
cp .env.example .env
```4. Up Docker containers:
```bash
docker-compose up -d
```5. Access container App:
```bash
docker-compose exec app bash
```6. Install dependencies project:
```bash
composer install
```7. Generate Laravel Project key:
```bash
php artisan key:generate
```8. Run migrations:
```bash
php artisan migrate
```9. Run project at http://localhost:8989