- PHP 8.2 with composer
- Any database (recommended : PostgreSQL or MySQL)
First, clone this repository to your local machine and navigate into the project directory.
git clone https://github.com/ucencode/laravel-basic-starter-kit.git
cd ./laravel-basic-starter-kit
cp .env.example .env
Set up your database configuration in the .env
file.
composer install
php artisan key:generate
php artisan migrate
php artisan serve
You can now access the server at http://localhost:8000
First, clone this repository to your local machine and navigate into the project directory.
git clone https://github.com/ucencode/laravel-basic-starter-kit.git
cd ./laravel-basic-starter-kit
Create a new .env
file by copying the example file.
cp .env.example .env
If you are using Linux or MacOS. Set up the correct permissions for the project.
chmod -R 777 /var/www/storage /var/www/bootstrap/cache
Run the following command to install PHP dependencies.
docker-compose up -d