Skip to content

Commit

Permalink
chore: Update README.md and DatabaseSeeder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
tareq1988 committed Mar 29, 2024
1 parent 5a9687f commit b1b1354
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: [email protected]
Password: password
```
5. **Install JavaScript Dependencies**
```bash
yarn
```

7. **Build Assets**
6. **Build Assets**
```bash
yarn build
```
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/DatabaseSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function run(): void
$this->call([
StatusSeeder::class,
BoardSeeder::class,
PostSeeder::class,
// PostSeeder::class,
]);
}
}

0 comments on commit b1b1354

Please sign in to comment.