Fix .gitignore files

This commit is contained in:
Fabien Potencier
2018-03-20 08:35:41 +01:00
committed by Fabien Potencier
parent a067bebf03
commit d53ebf5d85
4 changed files with 6 additions and 6 deletions
@@ -13,6 +13,6 @@
"JWT_PASSPHRASE": "%generate(secret)%"
},
"gitignore": [
"%CONFIG_DIR%/jwt/*.pem"
"/%CONFIG_DIR%/jwt/*.pem"
]
}
+3 -3
View File
@@ -18,9 +18,9 @@
"#TRUSTED_HOSTS": "localhost,example.com"
},
"gitignore": [
".env",
"/public/bundles/",
"/var/",
"/.env",
"/%PUBLIC_DIR%/bundles/",
"/%VAR_DIR%/",
"/vendor/"
]
}
+1 -1
View File
@@ -3,7 +3,7 @@
"Symfony\\Bundle\\WebServerBundle\\WebServerBundle": ["dev"]
},
"gitignore": [
".web-server-pid"
"/.web-server-pid"
],
"aliases": ["web-server", "server"]
}
@@ -7,6 +7,6 @@
"aliases": ["encore", "webpack", "webpack-encore"],
"gitignore": [
"/node_modules/",
"/public/build/"
"/%PUBLIC_DIR%/build/"
]
}