Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 752 Bytes

File metadata and controls

38 lines (24 loc) · 752 Bytes

Laravel, Intervention Image and DigitalOcean Spaces

Exercise files for the Laravel, Intervention Image and DigitalOcean Spaces screencast.

Set up project

Clone repository and install composer dependencies

git clone [email protected]:ssd-tutorials/laravel-intervention-image-do-spaces.git

cd laravel-intervention-image-do-spaces

composer install

Copy .env file and generate application key

cp .env.example .env

php artisan key:generate

Create database and update .env file with credentials, then run migration with seeds

php artisan migrate --seed

Install npm dependencies and generate assets

npm install

npm run dev

Once completed, you can open project in the browser.