Hello, I'm Sam Wrigley. I'm a Web-Developer and Graphic Designer.
This is the source for my personal website 👉 samwrigley.co.uk.
You can also find me on: 🐦 Twitter | 📷 Instagram | 💼 LinkedIn
First, clone the repository:
git clone https://github.com/samwrigley/samwrigley.co.uk.git
cd samwrigley.co.ukSecond, install Composer and npm dependencies:
composer install
yarn installNext, copy the example environment file and set the application key:
cp .env.example .env
php artisan key:generateFinally, run the database migrations and seed the database:
yarn seed:devTo build the JavaScript and CSS assets use:
yarn devTo rebuild the JavaScript and CSS assets whenever they change use:
yarn watchTo run the PHP tests use:
php artisan test --parallelTo run the Cypress tests use:
yarn cypress:setup
yarn cypress:run
yarn cypress:cleanupTo run PHP static analysis use:
./vendor/bin/phpstan analyseTo run PHP quality checks use:
php artisan insightsTo check all files are correctly linted use:
yarn lintTo fix any linting issues use:
yarn lint:fix