Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
Kind of continue from the other gist how to install LAMP on an Amazon AMI
##Install git
sudo yum install git-core
##Create ssh directory since it doesn't exists by default on the Amazon AMI
This gist assumes:
| <template> | |
| <div class="form-group" :class="errorClass"> | |
| <label :for="slug">{{ title }}</label> | |
| <textarea class="form-control" :id="slug" v-model="model" v-if="isTextarea" v-bind="attrs"></textarea> | |
| <input :type="type" class="form-control" :id="slug" v-model="model" v-if="isInput" v-bind="attrs"> | |
| <select class="form-control" :id="slug" v-model="model" v-if="isSelect" v-bind="attrs"> | |
| <option :value="option" v-for="option in options">{{ option }}</option> | |
| </select> | |
| <span class="help-block" v-show="errors" v-text="errorText"></span> | |
| </div> |
| <?php | |
| if ( ! function_exists('config_path')) | |
| { | |
| /** | |
| * Get the configuration path. | |
| * | |
| * @param string $path | |
| * @return string | |
| */ |