diff --git a/.env.example b/.env.example index 5658fd5f..99429b48 100644 --- a/.env.example +++ b/.env.example @@ -4,6 +4,7 @@ APP_KEY=base64:sB1YuKsbWv7MdWugb9ZsYBqv2QZJ+QOuHZHEddOsUuo= APP_DEBUG=true APP_URL=http://localhost APP_DEMO=false +IS_SETUP_WIZARD_DEMO=false LOG_CHANNEL=daily diff --git a/composer.json b/composer.json index ebb2329e..df020359 100644 --- a/composer.json +++ b/composer.json @@ -36,7 +36,8 @@ "spatie/laravel-tail": "^4.3.3", "stechstudio/laravel-zipstream": "^4.5", "teamtnt/laravel-scout-tntsearch-driver": "^11.5.0.0", - "vimeo/psalm": "^4.11.2" + "vimeo/psalm": "^4.11.2", + "ext-pdo": "*" }, "require-dev": { "ext-json": "*", diff --git a/resources/js/App.vue b/resources/js/App.vue index ed3a6d4f..1b72c677 100644 --- a/resources/js/App.vue +++ b/resources/js/App.vue @@ -85,13 +85,12 @@ export default { // Get installation state let installation = this.$root.$data.config.installation - if (['setup-disclaimer', 'setup-database'].includes(installation)) this.isLoaded = true + if (['setup-disclaimer', 'setup-database'].includes(installation)) + this.isLoaded = true // Redirect to database verify code - if (installation === 'setup-database') this.$router.push({ name: 'StatusCheck' }) - - // Redirect to starting installation process - if (installation === 'setup-disclaimer') this.$router.push({ name: 'InstallationDisclaimer' }) + //if (installation === 'setup-database') + //this.$router.push({ name: 'StatusCheck' }) if (installation === 'setup-done') this.$store.dispatch('getLanguageTranslations', this.$root.$data.config.locale).then(() => { @@ -100,11 +99,6 @@ export default { // Store config to vuex this.$store.commit('INIT', { config: this.$root.$data.config, - rootDirectory: { - name: this.$t('locations.home'), - location: 'base', - id: undefined, - }, }) }) }, diff --git a/resources/js/components/Auth/AuthContentWrapper.vue b/resources/js/components/Auth/AuthContentWrapper.vue index c66a2d71..133384ea 100644 --- a/resources/js/components/Auth/AuthContentWrapper.vue +++ b/resources/js/components/Auth/AuthContentWrapper.vue @@ -1,5 +1,5 @@ diff --git a/resources/js/components/Others/Forms/SwitchInput.vue b/resources/js/components/Others/Forms/SwitchInput.vue index de097ffb..c0258e26 100644 --- a/resources/js/components/Others/Forms/SwitchInput.vue +++ b/resources/js/components/Others/Forms/SwitchInput.vue @@ -1,5 +1,5 @@