We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e99498d commit 513cefcCopy full SHA for 513cefc
bootstrap
@@ -5,8 +5,10 @@ php bin/composer install -o --no-scripts --no-suggest
5
php bin/composer init-example
6
php bin/console assets:install --symlink --relative
7
php bin/console mapbender:database:init -v
8
+if ! grep -q "JWT_PASSPHRASE=" .env.local; then
9
+ echo "JWT_PASSPHRASE='$(openssl rand -base64 32)'" >> .env.local
10
+fi
11
php bin/console lexik:jwt:generate-keypair
-sed -i "s/^JWT_PASSPHRASE=<change_me>/JWT_PASSPHRASE=$(openssl rand -base64 32)/" application/.env
12
php bin/composer run post-install-cmd
13
echo Bootstrap finished!
14
echo If you want to run the builtin development server, install Symfony CLI from https://symfony.com/download then run:
0 commit comments