Last active
November 15, 2018 14:09
-
-
Save ScarletPonytail/e760187afe18dd3aa8971b525d7320ca to your computer and use it in GitHub Desktop.
Wordpress - Chassis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Apps -- | |
https://www.virtualbox.org/wiki/Downloads -- open-source hosted hypervisor for x86 computers | |
https://www.vagrantup.com/downloads.html -- open-source software product for building and maintaining portable virtual software development environments | |
https://www.sequelpro.com/ -- Mac database management application for working with MySQL databases | |
http://docs.chassis.io/en/latest/quickstart/ -- virtual server for WordPress, designed for simplicity and speed. | |
Local url -- http://scca.local/wp-admin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rm -rf /opt/vagrant | |
rm -f /usr/local/bin/vagrant | |
sudo pkgutil --forget com.vagrant.vagrant | |
Ref: https://www.vagrantup.com/docs/installation/uninstallation.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cheatsheet: https://gist.github.com/wpscholar/a49594e2e2b918f4d0c4 | |
vagrant up -- Boot (power up) your virtual machine | |
vagrant halt -- Stop (power down) your virtual machine | |
vagrant ssh -- SSH into the machine to run commands. | |
vagrant global-status -- outputs status of all vagrant machines | |
vagrant sequel -- Show dbs | |
cd /chassis -- Change to working directory (run before running any other commands) | |
phpunit -- Run tests. | |
wp --url=scca.local -- Run wp-cli commands. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment