diff --git a/.env b/.env deleted file mode 100644 index 688da84..0000000 --- a/.env +++ /dev/null @@ -1,39 +0,0 @@ -APP_NAME=ENEI -APP_ENV=local # Use "maintenance" to enable the maitenance page -APP_KEY=base64:AVegBkyjHs2QQsx53M9Kt9GbnrDLc6yG4cRg+WMJrbA= -APP_DEBUG=true -APP_URL=http://localhost:8000 -APP_PORT=8000 - -LOCALE=pt -FAKER_LOCALE=pt_PT - -DB_HOST=pgsql -DB_PORT=5432 -DB_USERNAME=postgres -DB_PASSWORD=postgres -DB_DATABASE=sinf-website-2023 -DB_CONNECTION=pgsql - -MAIL_HOST=mailpit -MAIL_PORT=1025 - -REDIS_HOST=redis - -MAINTENANCE_DRIVER=cache - -CACHE_DRIVER=redis - -QUEUE_CONNECTION=redis - -SCOUT_QUEUE=true -SCOUT_DRIVER=meilisearch -MEILISEARCH_HOST=http://meilisearch:7700 - -MEILISEARCH_NO_ANALYTICS=false - -LOG_CHANNEL="sinfWebsite" - -WWWGROUP=1000 - -WWWUSER=1000 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 6d3dd27..c37c12e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ /public/storage /storage/*.key /vendor +.env .env.backup .env.production .env.railway diff --git a/resources/js/Components/Navbar.vue b/resources/js/Components/Navbar.vue index de42783..d94f63c 100644 --- a/resources/js/Components/Navbar.vue +++ b/resources/js/Components/Navbar.vue @@ -9,7 +9,7 @@ import route, { type RouteParamsWithQueryOverload, } from "ziggy-js"; import { usePage } from "@inertiajs/vue3"; -import { OhVueIcon } from "oh-vue-icons"; +//import { OhVueIcon } from "oh-vue-icons"; import { isAdmin as checkIsAdmin } from "@/Types/User"; interface Route { @@ -46,7 +46,7 @@ const isAdmin = checkIsAdmin(props.auth.user);