1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/2FAuth_ynh.git synced 2024-09-03 20:36:18 +02:00
This commit is contained in:
ericgaspar 2022-04-07 15:59:53 +02:00
parent d6afd6f5c2
commit 70cf2ec50a
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 9 additions and 8 deletions

View file

@ -6,7 +6,7 @@ APP_NAME=2FAuth
# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation.
# Never set it to "testing".
APP_ENV=local
APP_ENV=production
# Set to true if you want to see debug information in error screens.
@ -109,4 +109,4 @@ PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
MIX_ENV=local
MIX_ENV=local

View file

@ -7,9 +7,9 @@
YNH_PHP_VERSION="7.3"
# Composer version
YNH_COMPOSER_VERSION="2.1.3"
YNH_COMPOSER_VERSION="2.3.3"
pkg_dependencies="php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mysql"
pkg_dependencies=" php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-bcmath php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mysql"
#=================================================
# PERSONAL HELPERS

View file

@ -116,11 +116,12 @@ ynh_script_progression --message="Building..." --weight=10
# Setup application config
pushd $final_path
php$phpversion artisan migrate:refresh -n
php$phpversion artisan passport:install -n
php$phpversion artisan storage:link -n
php$phpversion artisan config:cache -n
php$phpversion artisan migrate -n
#php$phpversion artisan passport:install -n
#php$phpversion artisan storage:link -n
php$phpversion artisan config:clear -n
popd
#=================================================
# RELOAD NGINX
#=================================================