mirror of
https://github.com/pelican-dev/panel.git
synced 2026-07-16 05:53:54 +03:00
Revert "wip"
This reverts commit 649e82d0c06f068f08b024a1f8fc4837b488cb3d.
This commit is contained in:
committed by
Michael (Parker) Parker
parent
9779365432
commit
4fc8d98a0f
34
.github/docker/entrypoint.sh
vendored
34
.github/docker/entrypoint.sh
vendored
@@ -2,12 +2,40 @@
|
||||
|
||||
#mkdir -p /var/log/supervisord/ /var/log/php8/ \
|
||||
|
||||
## Make sure the app key is set
|
||||
php artisan key:generate
|
||||
## check for .env file and generate app keys if missing
|
||||
if [ -f /pelican-data/.env ]; then
|
||||
echo "external vars exist."
|
||||
rm -rf /var/www/html/.env
|
||||
else
|
||||
echo "external vars don't exist."
|
||||
rm -rf /var/www/html/.env
|
||||
touch /pelican-data/.env
|
||||
|
||||
## manually generate a key because key generate --force fails
|
||||
if [ -z $APP_KEY ]; then
|
||||
echo -e "Generating key."
|
||||
APP_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
|
||||
echo -e "Generated app key: $APP_KEY"
|
||||
echo -e "APP_KEY=$APP_KEY" > /pelican-data/.env
|
||||
else
|
||||
echo -e "APP_KEY exists in environment, using that."
|
||||
echo -e "APP_KEY=$APP_KEY" > /pelican-data/.env
|
||||
fi
|
||||
fi
|
||||
|
||||
ln -s /pelican-data/.env /var/www/html/
|
||||
|
||||
touch /pelican-data/database.sqlite
|
||||
|
||||
if ! grep -q "APP_KEY=" .env || grep -q "APP_KEY=$" .env; then
|
||||
echo "Generating APP_KEY..."
|
||||
php artisan key:generate --force
|
||||
else
|
||||
echo "APP_KEY is already set."
|
||||
fi
|
||||
|
||||
## make sure the db is set up
|
||||
echo -e "Migrating and Seeding Database"
|
||||
touch database/database.sqlite
|
||||
php artisan migrate --force
|
||||
|
||||
## start cronjobs for the queue
|
||||
|
||||
Reference in New Issue
Block a user