Skip to content

Backend for Video Catalog with Laravel and Clean Archtecture

Notifications You must be signed in to change notification settings

valter-tonon/backend-clean-arch

Repository files navigation

Laravel 9.x - Quick Start (Laravel 9.x + Docker)

Rodar o Laravel

Clone Repositório

git clone https://github.com/codeedu/micro-admin-videos-php.git laravel9
cd laravel9/

Alterne de branch

git checkout laravel-9-quick-start

Remova o versionamento

rm -rf .git/

Crie o Arquivo .env

cp .env.example .env

Atualize as variáveis de ambiente do arquivo .env

APP_NAME="Full Cycle"
APP_URL=http://localhost:8000

DB_CONNECTION=mysql
DB_HOST=db
DB_PORT=3306
DB_DATABASE=code_micro_videos
DB_USERNAME=root
DB_PASSWORD=root

CACHE_DRIVER=redis
QUEUE_CONNECTION=redis
SESSION_DRIVER=redis

REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379

Suba os containers do projeto

docker-compose up -d

Acesse o container app

docker-compose exec app bash

Instalar as dependências do projeto

composer install

Gerar a key do projeto Laravel

php artisan key:generate

Acesse o projeto http://localhost:8000

About

Backend for Video Catalog with Laravel and Clean Archtecture

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages