Hey Guys I have not had ONE successful install with metronic. I sincerely have a headache from trying to install this theme so many times.
Anyone know a step by step guide to install Laravel Metronic? From 0? Iâve tried so many times and I am drained!
Thank you so much for the help! I have reviewed all documentationâs and tutorial with a 0 success rate
Hi Kenneth,
What is the error message you are getting?
For starters my laravel composer and apps are working. Itâs implementing metronic and installing gulp and we packs and all that. There are no clear steps for laravel. I have none.
I donât know if I should get my themes and thatâs it or if I have to drop all the files in the server then put gulp thereâs no documentation except for saying installing gulp or we packs and even those fail.
So as far as errors I donât even know what steps to take to even get an error
Hi Kenneth,
The laravel documentation can be found on this page. Gulp build is for HTML version only. The laravel app has separate documentation for setup.
https://preview.keenthemes.com/metronic8/laravel/documentation/getting-started/build
Thanks
Great only problem is i am not getting an env file. What should I do?
Copy .env.example
file and create a duplicate. Use cp
command for Linux or Mac users.cp .env.example .env
If you are using Windows, use copy instead of cp.copy .env.example .env
Thanks
Do you suggest a development service? I am about to loose it. Im trying to deploy my app and no success. I have everything else down. just cant find an enviroment to deploy to. Digital ocean has way too many proiblems with server config. Not matching the metronic theme. always a problem either by composer or database or versions of php are wrong.
Hi Kenneth,
.env file is required even for deployment. This is the config file where you can set your database access, etc.
The latest Laravel requires PHP version 8. Please use PHP 8 if you have not used it.
Please try to use this command to install composer.composer install --ignore-platform-reqs
Thanks