generated from Innovix-Matrix-Systems/ims-laravel-api-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
Quick Start
Azizul Hakim edited this page Oct 15, 2023
·
5 revisions
-
Choose Your Local Development Tool:
Select your preferred local development tool, such as Laragon, XAMPP, WAMP, or any other tool that suits your needs.
- Node 16+
- PHP version 8.1+
- MYSQL version 8.0+
-
Configure Your Environment:
Update your
.env
file with the correct database credentials. -
Install Dependencies:
Run the following command to install the required dependencies using Composer:
composer install
Run the following command to install required dependencies using npm and build them:
npm install npm run build
-
Migrate and Seed the Database: Initialize and seed the database with default data using:
php artisan migrate --seed
Now, your project is ready for use. You can access the admin panel via the provided route. If you've run the seed command, log in with the provided credentials. Customize and expand your application as needed.