diff --git a/README.md b/README.md index 00ffa4c..f11e1c4 100644 --- a/README.md +++ b/README.md @@ -45,25 +45,33 @@ Ensure you have the following installed: ```bash php artisan key:generate ``` - To set the application logo, add a square image as logo in the environment: + To set the application logo, add a square image as logo in the environment: ```bash APP_LOGO='https://path/to/logo.svg' ``` -5. **Run Database Migrations** +4. **Run Database Migrations** ```bash php artisan migrate + php artisan db:seed ``` -6. **Install JavaScript Dependencies** + A user has been created with the following credentials: + + ``` + Email: admin@example.com + Password: password + ``` + +5. **Install JavaScript Dependencies** ```bash yarn ``` -7. **Build Assets** +6. **Build Assets** ```bash yarn build ``` diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php index 01c9439..4961a18 100644 --- a/database/seeders/DatabaseSeeder.php +++ b/database/seeders/DatabaseSeeder.php @@ -23,7 +23,7 @@ public function run(): void $this->call([ StatusSeeder::class, BoardSeeder::class, - PostSeeder::class, + // PostSeeder::class, ]); } }