Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexJump24 authored and jbrooksuk committed Oct 15, 2024
1 parent a42fea2 commit 760bd43
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ public function up(): void
{
// Cachet settings...
rescue(fn () => $this->migrator->add('app.install_id', Str::random(40)));
rescue(fn () => $this->migrator->add('app.name', 'Cachet V3'));
rescue(fn () => $this->migrator->add('app.domain', <<<'ABOUT'
rescue(fn () => $this->migrator->add('app.name', 'Cachet'));
rescue(fn () => $this->migrator->add('app.domain'));
rescue(fn () => $this->migrator->add('app.about', <<<'ABOUT'
Cachet is a **beautiful** and **powerful** open-source status page system.
To access the [dashboard](/dashboard), use the following credentials:
Expand All @@ -22,7 +23,6 @@ public function up(): void
Please [consider sponsoring](https://github.com/cachethq/cachet?sponsor=1) the continued development of Cachet.
ABOUT));
rescue(fn () => $this->migrator->add('app.about'));
rescue(fn () => $this->migrator->add('app.timezone', 'UTC'));
rescue(fn () => $this->migrator->add('app.locale', 'en'));
rescue(fn () => $this->migrator->add('app.incident_days', 7));
Expand Down

0 comments on commit 760bd43

Please sign in to comment.