diff --git a/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml new file mode 100644 index 00000000..9d676bb1 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/services/enhavo/enhavo_app.yaml @@ -0,0 +1,4 @@ +imports: + - + path: '@enhavo/app/services/*' + diff --git a/enhavo/app-bundle/0.9/assets/theme/base.js b/enhavo/app-bundle/0.9/assets/theme/base.js new file mode 100644 index 00000000..58717275 --- /dev/null +++ b/enhavo/app-bundle/0.9/assets/theme/base.js @@ -0,0 +1 @@ +import './styles/base.scss'; \ No newline at end of file diff --git a/enhavo/app-bundle/0.9/assets/theme/images/.gitignore b/enhavo/app-bundle/0.9/assets/theme/images/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/assets/theme/styles/base.scss b/enhavo/app-bundle/0.9/assets/theme/styles/base.scss new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml new file mode 100644 index 00000000..04275d52 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/packages/enhavo_app.yaml @@ -0,0 +1,7 @@ +enhavo_app: + mailer: + defaults: + from: '%env(resolve:MAILER_FROM)%' + name: '%env(resolve:MAILER_NAME)%' + to: '%env(resolve:MAILER_TO)%' + menu: diff --git a/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml new file mode 100644 index 00000000..77d516c0 --- /dev/null +++ b/enhavo/app-bundle/0.9/config/routes/enhavo_app.yaml @@ -0,0 +1,3 @@ +enhavo_app_admin: + resource: "@EnhavoAppBundle/Resources/config/routes/admin/*" + prefix: /admin diff --git a/enhavo/app-bundle/0.9/manifest.json b/enhavo/app-bundle/0.9/manifest.json new file mode 100644 index 00000000..ad159674 --- /dev/null +++ b/enhavo/app-bundle/0.9/manifest.json @@ -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" + ] +} diff --git a/enhavo/app-bundle/0.9/post-install.txt b/enhavo/app-bundle/0.9/post-install.txt new file mode 100644 index 00000000..bc001e89 --- /dev/null +++ b/enhavo/app-bundle/0.9/post-install.txt @@ -0,0 +1,14 @@ + + Complete EnhavoAppBundle installation ... + + + * Update your package.json file + * Update your webpack.config.js file + * Update your configurations + * Build your assets with + + $ yarn encore dev + $ yarn routes:dump + + Read more details about the steps: + https://docs.enhavo.com/book/app-bundle/installation.html diff --git a/enhavo/app-bundle/0.9/public/build/.gitignore b/enhavo/app-bundle/0.9/public/build/.gitignore new file mode 100644 index 00000000..e69de29b diff --git a/enhavo/app-bundle/0.9/tsconfig.json b/enhavo/app-bundle/0.9/tsconfig.json new file mode 100644 index 00000000..794984fb --- /dev/null +++ b/enhavo/app-bundle/0.9/tsconfig.json @@ -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/**/*" + ] +}