Skip to content

acrossicauda/gestao-de-gastos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Projeto de estudos (VueJS e Laravel)

Rodando sem Docker:

Iniciar Projeto:

php artisan serve

OU

Acessar a pasta 'public'

cd backend/public
php -S localhost:8000

Rodando migrations:

run php artisan migrations:migrate

Rodando com Docker:

Iniciar container

docker-compose up --build

Rodando migrations:

docker-compose run php artisan migrations:migrate

URL LOCAL

http://localhost:8000/api

FRONTEND

Instalação de dependências

npm install

Inicializar server

npm run serve