9fd484fc7b
Updated start command to include storage setup and config clear.
10 lines
348 B
TOML
10 lines
348 B
TOML
[phases.build]
|
|
cmds = [
|
|
"composer install --optimize-autoloader --no-scripts",
|
|
"npm ci",
|
|
"npm run build"
|
|
]
|
|
|
|
[start]
|
|
cmd = "mkdir -p storage/framework/sessions storage/framework/cache storage/framework/views && chmod -R 775 storage && php artisan storage:link --force && php artisan config:clear && php artisan serve --host=0.0.0.0 --port=80"
|