Skip to content

Commit

Permalink
Updates to app.json
Browse files Browse the repository at this point in the history
  • Loading branch information
karllhughes committed Dec 31, 2016
1 parent fef4ac9 commit 28be6cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app.json
Expand Up @@ -14,8 +14,8 @@
"env": {
"APP_ENV": "production",
"APP_KEY": {
"description": "This gets generated by (php artisan key:generate --show)",
"generator": "secret"
"description": "Generate a unique key after deployment by running `php artisan key:generate`",
"value": "base64:Pqfff+YzQZNkTHm6pkgmNm2gdpLxBZ3VXhdpWAkIzNI="
},
"APP_DEBUG": {
"description": "Debug mode",
Expand Down Expand Up @@ -70,6 +70,6 @@
}
},
"scripts": {
"postdeploy": "php artisan key:generate && echo Done"
"postdeploy": "echo Done"
}
}
4 changes: 2 additions & 2 deletions app/Providers/AppServiceProvider.php
Expand Up @@ -34,11 +34,11 @@ public function register()
\JobApis\JobsToMail\Repositories\UserRepository::class
);
// Job board API client
$this->app->bind(JobsMulti::class, function() {
$this->app->bind(JobsMulti::class, function () {
return new JobsMulti(config('jobboards'));
});
// CSV Writer
$this->app->bind('League\Csv\Writer', function() {
$this->app->bind('League\Csv\Writer', function () {
return Writer::createFromString('');
});
}
Expand Down

0 comments on commit 28be6cd

Please sign in to comment.