13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ ! -d /.composer ]; then
|
||
|
mkdir /.composer
|
||
|
fi
|
||
|
|
||
|
chmod -R ugo+rw /.composer
|
||
|
|
||
|
cp .env.example .env
|
||
|
php /app/artisan app:init
|
||
|
|
||
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|