Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add info about minimal db seed needed (resolves #2267) #2340

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ php artisan migrate:fresh --seeder DevSeeder

_**NOTE:** This will overwrite all existing database tables._

The application can also be run without the dev/test data but still needs to be seeded with the required data:

```bash
php artisan migrate:fresh --seed
```

_**NOTE:** This will overwrite all existing database tables._

## Production environments

In production environments, a deployment should be followed by running all available migrations:
Expand All @@ -53,6 +61,12 @@ In production environments, a deployment should be followed by running all avail
php artisan migrate
```

If this is the first installation and there is no pre-existing data in the database the database must be seeded with:

```bash
php artisan db:seed
```

## Development

### Local Development Using Herd
Expand Down
Loading