This is the source code that powers my blog.
These steps assume that you use a mac as your development machine and (will use) Laravel Valet for your development environment.
brew install php node composer redis git
cd ~/Sites
git clone [email protected]:mabdullahsari/muhammedsari.git
Note As of this point, the commands below assume that you're in the project's root.
composer global require laravel/valet
valet install
valet use [email protected]
cd ~/Sites/muhammedsari
valet link
valet secure muhammedsari
valet isolate [email protected]
pecl install redis
brew services restart redis
brew services restart php
composer install --no-scripts
npm install
cp .env.example .env
php artisan key:generate
php artisan horizon:publish
npm run build
php artisan tinker --execute "echo bcrypt('YOUR_PW_HERE')" | pbcopy
Navigate to ./src/Identity/UserSeeder.php
and update the password hash of the default user.
touch ./database/database.sqlite
php artisan migrate:fresh --seed
The MIT License (MIT). Please see License File for more information.