mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-16 01:26:27 +03:00
Merge pull request #464
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
# See https://github.com/contao/core-bundle
|
||||
contao:
|
||||
web_dir: "%kernel.project_dir%/public"
|
||||
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Contao\\CoreBundle\\ContaoCoreBundle": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"composer-scripts": {
|
||||
"contao:install %PUBLIC_DIR%": "symfony-cmd",
|
||||
"contao:symlinks %PUBLIC_DIR%": "symfony-cmd"
|
||||
},
|
||||
"gitignore": [
|
||||
"/assets/",
|
||||
"/files/",
|
||||
"/system/*",
|
||||
"!/system/config/",
|
||||
"/system/config/localconfig.php",
|
||||
"/system/config/tcpdf.php",
|
||||
"/system/modules/*/.skip"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<bg=blue;fg=white> </>
|
||||
<bg=blue;fg=white> Next: Contao configuration </>
|
||||
<bg=blue;fg=white> </>
|
||||
|
||||
* Enable ESI in the <fg=green>config/packages/framework.yaml</> file.
|
||||
|
||||
* Add the Contao routes to your <fg=green>config/routing.yaml</> file and
|
||||
make sure they are loaded at the very end.
|
||||
|
||||
* Edit your <fg=green>config/security.yaml</> file and include all the
|
||||
necessary providers, firewalls and access control sections.
|
||||
|
||||
* Complete the installation by opening the <fg=green>/contao/install</> route
|
||||
in your browser.
|
||||
|
||||
Documentation: https://github.com/contao/core-bundle
|
||||
@@ -0,0 +1,2 @@
|
||||
contao_installation:
|
||||
resource: "@ContaoInstallationBundle/Resources/config/routing.yml"
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"bundles": {
|
||||
"Contao\\InstallationBundle\\ContaoInstallationBundle": ["all"]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user