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.

56 lines
1.1 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. #!/bin/bash
  2. ### STAGE
  3. db_stage_socket=""
  4. db_stage_host=""
  5. db_stage_port=""
  6. db_stage_name=""
  7. db_stage_user=""
  8. db_stage_password=""
  9. # the admmin user is used to create and drop databases
  10. db_stage_admin_user=""
  11. db_stage_admin_password=""
  12. ### LIVE
  13. db_live_socket=""
  14. db_live_host=""
  15. db_live_port=""
  16. db_live_name=""
  17. db_live_user=""
  18. db_live_password=""
  19. # the admmin user is used to create and drop databases
  20. db_live_admin_user=""
  21. db_live_admin_password=""
  22. ### LOCAL_STAGE
  23. # you can drive you local installation with a copy of stage or live
  24. db_local_stage_socket=""
  25. db_local_stage_host=""
  26. db_local_stage_port=""
  27. db_local_stage_name=""
  28. db_local_stage_user=""
  29. db_local_stage_password=""
  30. # the admmin user is used to create and drop databases
  31. db_local_stage_admin_user=""
  32. db_local_stage_admin_password=""
  33. ### LOCAL_LIVE
  34. # you can drive you local installation with a copy of stage or live
  35. db_local_live_socket=""
  36. db_local_live_host=""
  37. db_local_live_port=""
  38. db_local_live_name=""
  39. db_local_live_user=""
  40. db_local_live_password=""
  41. # the admmin user is used to create and drop databases
  42. db_local_live_admin_user=""
  43. db_local_live_admin_password=""