updates around README, .env, Dockerfile

This commit is contained in:
2024-03-31 21:01:36 +03:00
parent 4700578b1a
commit fa5cfab7f5
5 changed files with 26 additions and 18 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
APP_ENV=dev
APP_SECRET=eb09be4fcc136ed9174c7136f13b98e4
APP_ENV="%env(APP_ENV)%"
APP_SECRET="%env(APP_SECRET)%"
DATABASE_URL="postgresql://trial_user:trial_password@postgres:5433/trial_db?serverVersion=16&charset=utf8"
DATABASE_URL="postgresql://%env(POSTGRES_USER)%:%env(POSTGRES_PASSWORD)%@postgres:%env(PGPORT)%/%env(POSTGRES_DB)%?serverVersion=16&charset=utf8"
+3 -10
View File
@@ -53,16 +53,9 @@
"symfony/polyfill-php81": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
"auto-scripts": {},
"post-install-cmd": [],
"post-update-cmd": []
},
"conflict": {
"symfony/symfony": "*"