Skip to content

Commit 63d20bc

Browse files
committed
Move spool folder to var
1 parent 5d8c6a5 commit 63d20bc

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

Diff for: app/config/config_dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ swiftmailer:
4343
# delivery_address: me@example.com
4444
spool:
4545
type: file
46-
path: "%kernel.root_dir%/spool"
46+
path: "%kernel.root_dir%/../var/spool"

Diff for: app/config/config_prod.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,4 @@ monolog:
5858

5959
swiftmailer:
6060
spool:
61-
type: memory
62-
# type: file
63-
# path: "%kernel.root_dir%/spool"
61+
type: memory

Diff for: app/config/rsync_exclude.txt

+13-9
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ php
4242
/app/config/*_test.yml.dist
4343
/app/config/parameters.yml
4444
/app/bootstrap.php.cache
45-
/app/phpunit.xml.dist
46-
/app/phpunit.xml
47-
/app/phpmd.xml
48-
/app/spool
4945
/app/rsync_exclude.txt
5046

5147

@@ -81,13 +77,21 @@ php
8177
/features/*
8278
/tmp/*.txt
8379

84-
###Docs
85-
/README.md
86-
/LICENSE
87-
8880
###Tests
8981
/build.xml
9082
behat.*
9183

9284
###Auth
93-
auth.json
85+
auth.json
86+
87+
###Mangopay
88+
/tmp/mangopay/*.php
89+
/tmp/mangopay/.gitkeep
90+
91+
#Doc
92+
/doc/phpdocs/sami.phar
93+
94+
/var
95+
/var/phpunit.xml.dist
96+
/var/phpunit.xml
97+
/var/phpmd.xml

Diff for: bin/init-db

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ then
1313
fi
1414

1515
# "${PHP_ARG}" app/console doctrine:database:drop --force "${ENV_ARG}"
16-
"${PHP_ARG}" app/console doctrine:database:create --if-not-exists "${ENV_ARG}"
17-
"${PHP_ARG}" app/console doctrine:schema:update --force "${ENV_ARG}"
18-
"${PHP_ARG}" app/console doctrine:fixtures:load "${ENV_ARG}"
19-
"${PHP_ARG}" app/console cocorico:currency:update "${ENV_ARG}"
16+
"${PHP_ARG}" bin/console doctrine:database:create --if-not-exists "${ENV_ARG}"
17+
"${PHP_ARG}" bin/console doctrine:schema:update --force "${ENV_ARG}"
18+
"${PHP_ARG}" bin/console doctrine:fixtures:load "${ENV_ARG}"
19+
"${PHP_ARG}" bin/console cocorico:currency:update "${ENV_ARG}"

0 commit comments

Comments
 (0)