Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-kuendig committed Jun 12, 2018
2 parents 115fefa + 7fef051 commit f0ac31a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion october
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (file_exists(__DIR__.'/../../autoload.php')) {
require __DIR__.'/vendor/autoload.php';
}

$app = new Symfony\Component\Console\Application('October CMS Bootstrapper', '0.3.0');
$app = new Symfony\Component\Console\Application('October CMS Bootstrapper', '0.3.1');
$app->add(new \OFFLINE\Bootstrapper\October\Console\InitCommand);
$app->add(new \OFFLINE\Bootstrapper\October\Console\InstallCommand);
$app->run();
2 changes: 2 additions & 0 deletions src/Config/Writer.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ public function createEnvExample()

copy($this->env, $file);

$this->replaceLine('APP_KEY', 'APP_KEY=Change me!!!', $file);
$this->replaceLine('DB_USERNAME', 'DB_USERNAME=', $file);
$this->replaceLine('DB_PASSWORD', 'DB_PASSWORD=', $file);

Expand All @@ -111,6 +112,7 @@ public function createEnvProduction()

copy($this->env, $file);

$this->replaceLine('APP_KEY', 'APP_KEY=Change me!!!', $file);
$this->replaceLine('APP_ENV', 'APP_ENV=production', $file);
$this->replaceLine('APP_DEBUG', 'APP_DEBUG=false', $file);
$this->replaceLine('APP_URL', 'APP_URL=https://', $file);
Expand Down

0 comments on commit f0ac31a

Please sign in to comment.