This repository is a Wordpress site that is for the Urbanstalls website. The following directions reference how to pull the code and run the site locally. There is a VagrantFile included in this repository that will allow you to clone this repository and create a local development environment.
- Git
- Vagrant
- VirtualBox
- Ubuntu Precise (12.04)
- Wordpress (4.0)
- Beachwebsite
- Mysql
- Php
- Phpmyadmin
This is a fairly simple project to get up and running.
The procedure for starting up a working WordPress is as follows:
- Fork the project. (There’s only master branch.)
- Clone the project to your local machine
- Run the command
vagrant up
- Run the command 'vagrant provision' (this may happen on vagrant up as well, but won't hurt to run it again.)
- Open your browser to
http://localhost:8080
- Often times you may have a local instance of mysql running. You will need to shut that down before running
vagrant up
To log in to the local Wordpress installation:
http://localhost:8080/wp-admin/
the username is admin
, the password is smurfmurph
.
You can access mySQL with the following settings:
- Host:
127.0.0.1
- Username:
wordpress
- Password:
smurfmurph
- Database:
urban
- Port:
3306
Feel free to file an issue and/or create a pull request.