A Laravel + React application to manage and check WordPress site logins.
-
Clone the repository
-
Install backend dependencies
composer install
-
Copy env example
cp .env.example .env
-
Generate application key
php artisan key:generate
-
Set up your database credentials in .env
-
Run migrations
php artisan migrate
-
Install frontend dependencies
npm install
-
Build frontend assets
npm run build
-
Run the application
php artisan serve