Skip to content

kalitvyan/laravel-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Main stack

  • PHP 8.2.6
  • XDebug latest
  • Composer latest
  • Laravel 10.12.0
  • Nginx 1.25.0
  • PostgreSQL 15.3
  • Redis 7.0.11

Requirements

  • Ubuntu-based distribution, recommends latest LTS version
  • Docker < 24
  • Docker compose < 2.3

Run Development environment

# Creates config for dev environment. make env-dev # Build dev environment. make build # Start dev environment. make start # Installs composer dependencies. make composer-install # Runs migrations. make migrate # Runs seeds. make seed # Available commands. make help

Frontend

# Open Laravel container. make shell # Install js packages and dependencies. yarn install # Build assets (it's works for prod too). yarn build # Runs dev mode. yarn dev

Welcome: http://localhost.

Backend

Go to: http://localhost/admin/login

Login: admin@localhost Password: password 

Api

Boilerplate uses GraphQL for API implementation.

GraphQL endpoint: http://localhost/graphql

GraphQL Playground: http://localhost/graphiql

Schema: graphql/schema.graphql

XDebug

In order to enable Xdebug

PHPStorm:

  • Start listening for PHP Debug connection.
  • Go to Setting -> PHP -> Debug. Click Validate add select Local Web Server or Shared Folder. Add public in Path to create validation script and run Validation. Everything must be success.
  • Also disable Break at first line in PHP scripts in Debug section.
  • Go to Settings -> PHP -> Server. Use path mappings for default server 0.0.0.0. In Project File section specified the Absolute path on the server - /var/www/html which corresponds to project root.
  • Apply remote configuration that stored in .run/remote.run.xml.
  • Set Breakpoints.
  • Start debugging.

VSCode:

  • Install and enable PHP Debug, Docker and Remote Explorer extensions.
  • Just set Breakpoints and run Debugging (F5).
  • VSCode configuration in .vscode/launch.json.

That's all.

In both cases XDebug helper need to be installed and enabled.

Customize the configuration you may in docker/php/dev/xdebug.ini. Available only in dev and test environments.

Nginx

PostgreSQL

# Run shell in container. make shell-pgsql # Show postgresql logs. make logs-pgsql

Redis

  • Customize the configuration you may in docker/redis/redis.conf

Packages

License

The MIT License (MIT)

About

Docker environment for Laravel based projects (uses only official images from docker hub)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published