To migrate latest version of laravel, follow steps of
Migrate Laravel Steps and then go ahead with installation.
Installing and running Materio is super easy, please follow below steps and you will be ready to rock
🤘
Open the terminal in your root directory of Materio Laravel.
Use following command to install composer
composerinstall
Find .env.example file at root folder and copy it to .env by running below command
Or also can manually copy it (if not having .env file):
cp.env.example .env
Run the following command to generate the key
phpartisan key:generate
By running the following command, you will be able to get all the dependencies in your
node_modules folder:
yarn
To start the development server, This command will build your frontend assets with template:
Information for vite:
You can use Vite in two modes:
Development Mode: Run yarn dev to start a local server with hot-reloading, ideal for
making and previewing changes in real-time.
Production Build: Execute yarn build to bundle and optimize assets for deployment,
preparing your application for production.
yarnbuild
yarndev
To serve the application, you need to run the following command in the project directory
phpartisan serve
Now navigate to the given address, you will see your application is running.🥳
To change the port address, run the following command:
phpartisan serve --port=8080 // For port 8080
Watching for changes: If you want to watch all the changes, you make in JavaScript and Styles
files then run the following command in the root directory: