This commit is contained in:
2022-02-15 07:33:00 +01:00
commit 50638af575
52 changed files with 7293 additions and 0 deletions

21
config/common.neon Executable file
View File

@@ -0,0 +1,21 @@
parameters:
application:
errorPresenter: Error
mapping:
*: [App, Modules\*, Presenters\*Presenter]
session:
expiration: 14 days
di:
export:
parameters: no
tags: no
tracy:
bar:
- VitePanel

7
config/local.neon Executable file
View File

@@ -0,0 +1,7 @@
parameters:
database:
dsn: 'mysql:host=db;dbname=root'
user: root
password: root

6
config/services.neon Executable file
View File

@@ -0,0 +1,6 @@
services:
- App\Router\RouterFactory::createRouter
- Vite(http://localhost:3000, %wwwDir%/manifest.json, not(%debugMode%))
nette.latteFactory:
setup:
- addFilter(asset, App\Latte\AssetFilter())