Add default nami credentials
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
543561c776
commit
84b8c9479d
|
@ -46,5 +46,8 @@ PUSHER_APP_KEY=
|
|||
PUSHER_APP_SECRET=
|
||||
PUSHER_APP_CLUSTER=mt1
|
||||
|
||||
NAMI_MGLNR=-1
|
||||
NAMI_PASSWORD=password
|
||||
|
||||
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
||||
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
||||
|
|
|
@ -7,7 +7,7 @@ class CreateNamiSettings extends SettingsMigration
|
|||
|
||||
public function up(): void
|
||||
{
|
||||
$this->migrator->add('nami.mglnr', -1);
|
||||
$this->migrator->add('nami.password', '');
|
||||
$this->migrator->add('nami.mglnr', (int)env('NAMI_MGLNR'));
|
||||
$this->migrator->add('nami.password', env('NAMI_PASSWORD'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue