File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -22,22 +22,22 @@ echo "Enter your database password"
22
22
read DB_PASSWORD
23
23
24
24
# # Write to the .env file
25
- echo " PORT=${PORT} " >> .env.test
26
- echo " " >> .env.test
27
- echo " DB_CLIENT=${DB_CLIENT} " >> .env.test
28
- echo " DB_HOST=${DB_HOST} " >> .env.test
29
- echo " DB_USER=${DB_USER} " >> .env.test
30
- echo " DB_PASSWORD=${DB_PASSWORD} " >> .env.test
25
+ echo " PORT=${PORT} " >> .env
26
+ echo " " >> .env
27
+ echo " DB_CLIENT=${DB_CLIENT} " >> .env
28
+ echo " DB_HOST=${DB_HOST} " >> .env
29
+ echo " DB_USER=${DB_USER} " >> .env
30
+ echo " DB_PASSWORD=${DB_PASSWORD} " >> .env
31
31
32
32
# # Setup SLACK
33
33
echo " Would you like to receive slack notifications y/n"
34
34
read SLACK_NOTIFICATIONS
35
35
# # Slack notifications have been allowed
36
36
if [ $SLACK_NOTIFICATIONS == ' y' ]
37
37
then
38
- echo " " >> .env.test
39
- echo " SLACK_NOTIFICATION=true" >> .env.test
38
+ echo " " >> .env
39
+ echo " SLACK_NOTIFICATION=true" >> .env
40
40
echo " Enter the slack webhook URL below"
41
41
read SLACK_WEBHOOK_URL
42
- echo " SLACK_WEBHOOK_URL=${SLACK_WEBHOOK_URL} " >> .env.test
42
+ echo " SLACK_WEBHOOK_URL=${SLACK_WEBHOOK_URL} " >> .env
43
43
fi
You can’t perform that action at this time.
0 commit comments