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: about 1 month 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-12T11:53:48.000Z (over 2 years ago)
- Last Synced: 2025-02-06T13:34:51.524Z (over 1 year 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 git@github.com: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