Skip to content

Setting up the app (w php and node)

Austin Kregel edited this page Dec 13, 2020 · 1 revision

(This assumes you already have PHP 7.4 and Node 12.10 & NPM 6.10...)

Install dependencies

composer install
npm install

Configure environment

cp .env.example .env

Edit .env file to your needs

Create storage link + generate key

php artisan storage:link
php artisan key:generate

Run database installation

php artisan migrate

Run css/js compilation

npm run prod

And now run the test server

php artisan serve