File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 44 branches :
55 - main
66 - production
7- - bugfix/global
87 pull_request :
98 branches :
109 - main
1110 - production
12- - bugfix/global
1311jobs :
1412 build :
1513 name : Build and test
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ read -p "Postgres port (default: 5432): " POSTGRES_PORT
3131POSTGRES_PORT=${POSTGRES_PORT:- 5432}
3232echo " POSTGRES_PORT=$POSTGRES_PORT " >> .env
3333
34- read -p " Postgres domain (default: localhost): " POSTGRES_HOST
34+ read -p " Postgres host (default: localhost): " POSTGRES_HOST
3535POSTGRES_HOST=${POSTGRES_HOST:- localhost}
3636echo " POSTGRES_HOST=$POSTGRES_HOST " >> .env
3737
@@ -117,7 +117,7 @@ echo "" >> .env
117117# Postgres URL
118118# ============================
119119echo " # Postgres" >> .env
120- DATABASE_URL=" postgresql://${POSTGRES_USER} :${POSTGRES_PASSWORD} @${POSTGRES_DOMAIN } :${POSTGRES_PORT} /${POSTGRES_DB} ?schema=public"
120+ DATABASE_URL=" postgresql://${POSTGRES_USER} :${POSTGRES_PASSWORD} @${POSTGRES_HOST } :${POSTGRES_PORT} /${POSTGRES_DB} ?schema=public"
121121echo " DATABASE_URL=\" $DATABASE_URL \" " >> .env
122122
123123echo " "
You can’t perform that action at this time.
0 commit comments