Blog web application where users can read and write articles, created with Laravel, Blade Templates, TailwindCSS and Alpine.js
Requirements:
Installation:
-
Clone or download the repository
git clone https://github.com/Roszakos/threadhub-blog-application.git -
Rename .env.example file to .env
-
Fill .env file with your database information
-
Open console and cd to project root directory (threadhub-blog-application)
-
Run following commands:
-
Install required dependencies
composer installnpm install -
Generate application key
php artisan key:generate -
Create storage symbolic link
php artisan storage:link -
Run database migrations
php artisan migrate -
You can seed the database with dummy data if you'd like to
php artisan db:seed -
Run project
php artisan servenpm run dev
- View the project at localhost:8000