laravel
Adds Laravel support to the Darkmantle Suite of Puppet Configurations
Version information
released Apr 27th 2015
This version is compatible with:
Start using this module
Add this module to your Puppetfile:
mod 'darkmantle-laravel', '1.0.3'
Learn more about managing modules with a PuppetfileDocumentation
darkmantle/laravel — version 1.0.3 Apr 27th 2015
Darkmantle Puppet: Laravel
This is the Laravel module in my series of WebDev Puppet Configurations
Dependencies
Installation
Make sure you install the dependencies above!
Puppet
puppet module install darkmantle-laravel
Git Submodule
git submodule add https://github.com/darkmantle/puppet-laravel.git modules/laravel
Usage
Create a manifest that has the following code:
Exec {
path => ["/usr/bin", "/bin", "/usr/sbin", "/sbin", "/usr/local/bin", "/usr/local/sbin"]
}
# view darkmantle/lamp documentation for custom setup
include lamp::apache
include lamp::php
include lamp::mysql
include lamp::phpmyadmin
# note: this removes any previous laravel projects and creates a new empty one
include laravel
exec {"apt-get update":
command => "apt-get update"
}
Dependencies
- darkmantle-lamp (>=1.0.0)