Skip to content

Commit 652542b

Browse files
authored
Merge pull request #9 from dotkernel/stefan-dev
Static pages
2 parents 16a6507 + 05be1f8 commit 652542b

29 files changed

Lines changed: 1393 additions & 284 deletions

config/autoload/local.php.dist

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,36 @@
99

1010
declare(strict_types=1);
1111

12-
$baseUrl = 'http://light.dotkernel.localhost';
13-
12+
$baseUrl = 'http://dotkernel.com.localhost';
13+
$databases = [
14+
'default' => [
15+
'host' => 'localhost',
16+
'dbname' => '',
17+
'user' => '',
18+
'password' => '',
19+
'port' => 3306,
20+
'driver' => 'pdo_mysql',
21+
'collate' => 'utf8mb4_general_ci',
22+
],
23+
];
1424
return [
1525
'application' => [
1626
'url' => $baseUrl,
1727
],
28+
'databases' => $databases,
29+
'doctrine' => [
30+
'connection' => [
31+
'orm_default' => [
32+
'params' => $databases['default'],
33+
],
34+
],
35+
],
1836
'routes' => [
1937
'page' => [
20-
'about' => 'about',
21-
'who-we-are' => 'who-we-are',
38+
'about' => 'about',
39+
'who-we-are' => 'who-we-are',
40+
'contact' => 'contact',
41+
'dotkernel-packages-oss-lifecycle' => 'dotkernel-packages-oss-lifecycle',
2242
],
2343
],
2444
];

public/css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)