Skip to content

yassir3wad/laravel-vue-spa-docker

Repository files navigation

Laravel & Vue SPA Starter Kit

Test PHP Lint PHP

Technology

  • PHP-FPM 8.1
  • Laravel 10
  • Vue, Vuex, i18n
  • Sanctum for Authentication (session)
  • Fortify
  • Docker & Docker Compose
  • Nginx
  • Mysql
  • Redis
  • Mailpit (as a test mail driver)
  • Redis Queues
  • Task Scheduling

How it works

Containers

  1. api: serves the backend app (laravel app)
  2. client: serves the fronted app (vue app)
  3. webserver: services static content, storage, and passes traffic to api & client containers (proxy)
  4. mysql: main database connection
  5. redis: cache driver / queue connection
  6. mailpit: SMTP server with a web interface to view all mails (just for dev env)
  7. worker: runs queue workers & crontab

Installation

Development Environment

it includes compiling and hot-reloading for development

cp api/.env.dev.example api/.env.dev

// then =>

docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build

// then =>

// run the migrations
docker exec -it spa-dev-api-1 php artisan migrate --seed

Staging Environment

Compiles and minifies for staging

docker-compose -f docker-compose.yml -f docker-compose.stg.yml up --build

Production Environment

Compiles and minifies for production

docker-compose -f docker-compose.yml -f docker-compose.prd.yml up --build

Customize configuration

Roadmap

  • Laravel, Sunctum, and Fortify installations
  • Vue & vuex installations
  • Login
  • Forget & Reset Password
  • Update Profile Info
  • Update Password
  • Setup Laravel Permission
  • Roles Module
  • Users Module
  • Setup Scheduler
  • Setup Queue/Workers
  • Setup Horizon
  • Settings Module
  • Real Time Notifications Module
  • Real Time Chat Module

Contributing

Contributions are welcome and will be fully credited.