Merge pull request #1011

This commit is contained in:
symfony-flex-server[bot]
2020-10-12 20:39:37 +00:00
committed by GitHub
10 changed files with 69 additions and 0 deletions
@@ -0,0 +1,4 @@
imports:
-
path: '@enhavo/app/services/*'
@@ -0,0 +1 @@
import './styles/base.scss';
@@ -0,0 +1,7 @@
enhavo_app:
mailer:
defaults:
from: '%env(resolve:MAILER_FROM)%'
name: '%env(resolve:MAILER_NAME)%'
to: '%env(resolve:MAILER_TO)%'
menu:
@@ -0,0 +1,3 @@
enhavo_app_admin:
resource: "@EnhavoAppBundle/Resources/config/routes/admin/*"
prefix: /admin
+24
View File
@@ -0,0 +1,24 @@
{
"bundles": {
"Enhavo\\Bundle\\AppBundle\\EnhavoAppBundle": ["all"]
},
"container": {
"locale": "en"
},
"env": {
"MAILER_FROM": "no-reply@email.com",
"MAILER_NAME": "enhavo",
"MAILER_TO": "my@email.com"
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/",
"assets/": "assets/",
"public/": "%PUBLIC_DIR%/",
"tsconfig.json": "tsconfig.json"
},
"gitignore": [
"public/build/enhavo/*",
"public/build/theme/*",
"public/js/fos_routes.js"
]
}
+14
View File
@@ -0,0 +1,14 @@
<bg=blue;fg=white> </>
<bg=blue;fg=white> Complete EnhavoAppBundle installation ... </>
<bg=blue;fg=white> </>
* Update your <fg=green>package.json</> file
* Update your <fg=green>webpack.config.js</> file
* Update your configurations
* Build your assets with
<fg=green>$ yarn encore dev</>
<fg=green>$ yarn routes:dump</>
<fg=green> Read more details about the steps:</>
<fg=blue> https://docs.enhavo.com/book/app-bundle/installation.html</>
+16
View File
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"lib": [ "es2015", "dom" ],
"module": "amd",
"target": "es5",
"allowJs": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",
"sourceMap": true,
"experimentalDecorators": true
},
"include": [
"./assets/**/*"
]
}