ajoutUtilisateurs
This commit is contained in:
9
config/database.php
Normal file
9
config/database.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
'user' => 'admin',
|
||||
'pass' => 'adminpass123',
|
||||
'name' => 'siterecette'
|
||||
];
|
||||
8
config/general.php
Normal file
8
config/general.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'website_url' => 'http://127.0.0.1:8080/',
|
||||
'website_name' => 'Les recettes des Papis',
|
||||
|
||||
'website_path' => APP_ROOT,
|
||||
];
|
||||
6
config/route_arguments.php
Normal file
6
config/route_arguments.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
return [
|
||||
'{int}' => '([0-9]+)',
|
||||
'{chars}' => '([A-Za-z]+)',
|
||||
'{string}' => '([0-9A-Za-z]+)',
|
||||
];
|
||||
4
config/views.php
Normal file
4
config/views.php
Normal file
@@ -0,0 +1,4 @@
|
||||
<?php
|
||||
return [
|
||||
'base_view_skeleton' => 'base'
|
||||
];
|
||||
Reference in New Issue
Block a user