feat: locale to fr
This commit is contained in:
parent
4d093b0679
commit
bdce92add4
|
|
@ -13,6 +13,7 @@ services:
|
|||
# ports: <--- Supprimé pour la sécurité, NPM s'en occupe
|
||||
# - "8002:80"
|
||||
environment:
|
||||
APP_LOCALE: "fr"
|
||||
APP_ENV: "production"
|
||||
APP_KEY: "${APP_KEY}"
|
||||
APP_URL: "${APP_URL}"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,3 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
test('the application returns a successful response', function () {
|
||||
$response = $this->get('/');
|
||||
$response = $this->get('/up');
|
||||
|
||||
$response->assertStatus(200);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue