Ein für Shopware 6 vorbereitet Systemmanagment.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

57 lines
1.1 KiB

#!/bin/bash
### STAGE
db_stage_socket=''
db_stage_host=''
db_stage_port=''
db_stage_database=''
db_stage_user=''
db_stage_password=''
# the admmin user is used to create and drop databases
db_stage_admin_user=''
db_stage_admin_password=''
### LIVE
db_live_socket=''
db_live_host=''
db_live_port=''
db_live_database=''
db_live_user=''
db_live_password=''
# the admmin user is used to create and drop databases
db_live_admin_user=''
db_live_admin_password=''
### LOCAL_STAGE
# you can drive you local installation with a copy of stage or live
db_local_stage_socket=''
db_local_stage_host=''
db_local_stage_port=''
db_local_stage_database=''
db_local_stage_user=''
db_local_stage_password=''
# the admmin user is used to create and drop databases
db_local_stage_admin_user=''
db_local_stage_admin_password=''
### LOCAL_LIVE
# you can drive you local installation with a copy of stage or live
db_local_live_socket=''
db_local_live_host=''
db_local_live_port=''
db_local_live_database=''
db_local_live_user=''
db_local_live_password=''
# the admmin user is used to create and drop databases
db_local_live_admin_user=''
db_local_live_admin_password=''