laravel basic starter kit
1.0.0
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-kitcp .env.example .envSet up your database configuration in the .env file.
composer installphp artisan key:generatephp artisan migratephp artisan serveYou 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-kitCreate a new .env file by copying the example file.
cp .env.example .envIf you are using Linux or MacOS. Set up the correct permissions for the project.
chmod -R 777 /var/www/storage /var/www/bootstrap/cacheRun the following command to install PHP dependencies.
docker-compose up -d