Skip to content

Commit 45b0be5

Browse files
authored
Merge pull request #24 from CardanoGateKeeper/fix-staging-deployment
Allow demo seeding on staging environment
2 parents 4e09c77 + 03a19a2 commit 45b0be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/seeders/DatabaseSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public function run(): void
1010
{
1111
// Any global seeding goes here, e.g. default roles/permissions/user, etc.
1212

13-
if (app()->environment('local')) {
13+
if (app()->environment('local') || app()->environment('staging')) {
1414
$this->call(DemoEventSeeder::class);
1515
}
1616
}

0 commit comments

Comments
 (0)