Guest User

Untitled

a guest
Aug 8th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Clean up needed for StarterTheme tests
  4. mysql -u root -e "DROP DATABASE IF EXISTS \`psTest\`;"
  5.  
  6. echo "* Installing PrestaShop, this may take a while ...";
  7. php install-dev/index_cli.php \
  8. --language=en \
  9. --country=fr \
  10. --domain=localhost \
  11. --base_uri=/psTest/ \
  12. --db_server=127.0.0.1 \
  13. --db_user=root \
  14. --db_name=psTest \
  15. --db_create=1 \
  16. --firstname=Foo \
  17. --lastname=Bar \
  18. --name=prestashop.unit.test \
  19. --email=demo@prestashop.com \
  20. --password=prestashop_demo
Add Comment
Please, Sign In to add comment