加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RUN 588 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env bash
if [ ! -d "vendor" ]; then
composer install
fi
if [ ! -e ".env" ]; then
cp .env.example .env
php artisan key:generate
php artisan config:clear
php artisan config:cache
fi
if [ ! -e "storage/trunon" ]; then
touch storage/trunon
php artisan migrate
php artisan db:seed --verbose
fi
which supervisord > /dev/null
if [ $? -ne 0 ]; then
if [ "$(whoami)" != "root" ]; then
echo "未安装 supervisord ,将会在您输入密码后安装"
CMD=$(cat <<EOF
pip install supervisor
EOF
)
sudo sh -c $CMD > /dev/null
fi
fi
php artisan run
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化