y9938 7b6ed48812 chore(just): add flexible docs and lint commands
- support args in docs recipe for force regeneration
- add docs-fresh to combine db reset and doc generation
- add lint recipe for code style checks
2026-03-21 03:38:22 +03:00
2025-10-06 03:09:52 +03:00

Laravel Docker Setup

  • PHP-FPM, NGINX, MySQL, phpMyAdmin (in compose.yaml)

Run a container

cp .env.example .env
# !change .env for yourself
docker compose up -d php-fpm
docker compose exec --user www php-fpm bash
# or `just shell`

Create a project:

Rewrite below for yourself:

RECOMENDED:

The latest version via laravel/installer package

composer global require laravel/installer && \
export PATH="$HOME/.composer/vendor/bin:$PATH"

# Check options via `laravel new -h`
laravel new example-app

# copy your `.env` content to `example-app/.env`
mv example-app/* example-app/.* ./
rmdir example-app

OR:

The specific version via composer

composer create-project --prefer-dist laravel/laravel example-app ^11.0

# copy your `.env` content to `example-app/.env`
mv example-app/* example-app/.* ./
rmdir example-app

Quick Actions

just
Description
No description provided
Readme MIT 66 KiB
Languages
Shell 46.6%
Dockerfile 29.9%
Just 23.5%