pushdeer/docker/web/init.sh
2022-01-16 19:05:29 +08:00

17 lines
363 B
Bash

#!/bin/bash
# 初始化 laravel
cd /app/api && composer install && cp -n .env.example .env && php artisan key:generate && php artisan migrate --seed
mkdir -p /app/api/storage
chmod -R 0777 /app/api/storage
mkdir -p /app/api/bootstrap/cache/
chmod -R 0777 /app/api/bootstrap/cache/
# 启动 proxy
# 已经设置为 deamon
# cd /app/proxy && ./server-linux &