_install.sh 513 B

123456789101112
  1. #!/usr/bin/env bash
  2. echo "========================"
  3. echo "WindhamDavid / WordPress"
  4. echo "========================"
  5. echo "cp wp-config-sample.php to wp-config.php"
  6. cp wp-config-sample.php wp-config.php
  7. echo "Generating WordPress Salts for DotEnv"
  8. bin/wpsalts dotenv --clean >> .env
  9. echo "Copying WordPress default (twentytwenty) theme to app/themes"
  10. cp -R wp/wp-content/themes/twentytwenty app/themes/twentytwenty
  11. echo "/* you know the drill */"
  12. echo "More info is available @ https://github.com/windhamdavid/wp"