Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
init:
mkdir -p public/build
echo "{}" > public/build/manifest.json
./bin/console doctrine:database:create
./bin/console doctrine:schema:create
./bin/console doctrine:fixtures:load
composer install
./bin/console assets:install
./bin/console ckeditor:install
./bin/console assets:install public

db:
./bin/console doctrine:database:create
./bin/console doctrine:schema:create
./bin/console doctrine:fixtures:load

rebuild:
@php bin/console doctrine:database:drop --force
@php bin/console doctrine:database:create
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"opera-project/media-bundle": "^0.1.0@dev",
"opera-project/taxonomy-bundle": "^0.1.0@dev",
"opera-project/text-block-bundle": "dev-master",
"opera-project/twig-block-bundle": "^0.1.0@dev",
"ramsey/uuid-doctrine": "^1.4",
"sensio/framework-extra-bundle": "^5.1",
"stof/doctrine-extensions-bundle": "^1.3",
Expand Down
93 changes: 71 additions & 22 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@
Opera\MediaBundle\OperaMediaBundle::class => ['all' => true],
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
Opera\TaxonomyBundle\OperaTaxonomyBundle::class => ['all' => true],
Opera\TwigBlockBundle\OperaTwigBlockBundle::class => ['all' => true],
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can u add fixtures demo with this one and caches ?

];
3 changes: 3 additions & 0 deletions symfony.lock
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@
"opera-project/text-block-bundle": {
"version": "dev-master"
},
"opera-project/twig-block-bundle": {
"version": "0.1-dev"
},
"pagerfanta/pagerfanta": {
"version": "v1.1.0"
},
Expand Down