Skip to content

Latest commit

 

History

History
56 lines (34 loc) · 1.12 KB

README.md

File metadata and controls

56 lines (34 loc) · 1.12 KB

Laravel Complete Starter

Look at the Complete guide to Laravel and Prepr personalization to learn more.

Add the environment file

Copy the .env.example file in this directory to .env (which will be ignored by Git) by running the following command:

cp .env.example .env

Update the environment file

In the .env file replace with the Prepr endpoint from your environment with demo content.

Setup

Make sure to install the dependencies:

composer install
npm install
npm run dev

Generate App Key

php artisan key:generate

Create Database File

Create the SQLite database file used in this project. If you'd like to use a different database, check out the Laravel docs for more details.

php artisan migrate

Development Server

Start the development server on http://localhost:8000

php artisan serve

Production

Check out the deployment documentation for more information.