mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-18 05:02:14 +01:00
Fixed typo in self hosting command
This commit is contained in:
committed by
Constantin Graf
parent
280d778794
commit
c888ac7ec2
@@ -41,8 +41,8 @@ class SelfHostGenerateKeys extends Command
|
|||||||
|
|
||||||
if ($format === 'env') {
|
if ($format === 'env') {
|
||||||
$this->line('APP_KEY="'.$appKey.'"');
|
$this->line('APP_KEY="'.$appKey.'"');
|
||||||
$this->line('PASSPORT_PRIVATE_KEY="'.$publicKey.'"');
|
$this->line('PASSPORT_PRIVATE_KEY="'.$privateKey.'"');
|
||||||
$this->line('PASSPORT_PUBLIC_KEY="'.$privateKey.'"');
|
$this->line('PASSPORT_PUBLIC_KEY="'.$publicKey.'"');
|
||||||
} elseif ($format === 'yaml') {
|
} elseif ($format === 'yaml') {
|
||||||
$this->line('APP_KEY: "'.$appKey.'"');
|
$this->line('APP_KEY: "'.$appKey.'"');
|
||||||
$this->line("PASSPORT_PRIVATE_KEY: |\n ".Str::replace("\n", "\n ", $privateKey));
|
$this->line("PASSPORT_PRIVATE_KEY: |\n ".Str::replace("\n", "\n ", $privateKey));
|
||||||
|
|||||||
Reference in New Issue
Block a user