// (to make a title: echo " CLIENT.PROJECT" | figlet -f smslant )
This *generic template* aims at _implementating_ a default project tree, that then could be used as a *starter kit* for new Drupal projects.
TIP: More information on our Drupal practices at Savoir-faire Linux are described in {sfl-wiki-drupal}[the official Wiki].
== System Requirements
This installation profile has been designed to work with Drupal 7, and is compatible with PHP > 5.3.
Ensure your system is properly installed.
TIP: Whenever it is possible, you should use *Composer* to install and manage the PHP dependencies.
The following dependencies need to be installed:
* {doc-docker}[Docker]
* {doc-docker-baseimage}[Docker base image]
* {doc-fabric}[Fabric]
* Drush (version 6 or version 7)
== Installation
CAUTION: The installation procedure to set-up Docker is not described here. Please refer to the official documentation on how to install {doc-docker-installation}[Docker Engine]. The {doc-docker-baseimage}[Docker base image] should also be installed at this point.
You are now ready to build the SFLinux distribution:
$ cd drupalizer
$ fab local_setup
The Docker image containing the Drupal installation should now be up and running, and the site should now be accessible at http://local.boilerplate.sfl.
== Official documentation
More on Drupal distributions: https://www.drupal.org/documentation/build/distributions.
More on Drush and Makefile: https://www.drupal.org/node/1432374.
== About this document
This document uses the Asciidoc syntax generator. It is a convenient
tool allowing to write documentation in raw text files, and convert
them to HTML or PDF later on.
To generate a HTML version, first install asciidoctor package on your
Linux distribution, then issue following command:
$ asciidoctor README.adoc
The README.html is generated in the current directory.
If you prefer the PDF format, install dblatex package on your Linux
distribution, then issue following command:
$ a2x -f pdf --dblatex-opts "-P latex.output.revhistory=0" README.adoc
This repo contains a recipe for making a [Docker](http://docker.io) image for Drupal.
To build, make sure you have Docker [installed](http://www.docker.io/gettingstarted/).
This will try to go in line with [Drupal automated-testing](https://drupal.org/automated-testing).
## Install docker:
First, check that your APT system can deal with https URLs: the file /usr/lib/apt/methods/https should exist. If it doesn't, you need to install the package apt-transport-https.
```
[ -e /usr/lib/apt/methods/https ] || {
apt-get update
apt-get install apt-transport-https
}
```
Then, add the Docker repository key to your local keychain.
Add the Docker repository to your apt sources list, update and install the lxc-docker package.
```
sudo sh -c "echo deb https://get.docker.com/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install lxc-docker
```
Add your user to the docker group to be able to execute docker command wihtout sudo
```
adduser <user> docker
```
## This project depend of [Docker-BaseImage](https://gitlab.savoirfairelinux.com/erortiz/docker-lampd/tree/master).
This project use like [Docker-BaseImage](https://gitlab.savoirfairelinux.com/erortiz/docker-lampd/tree/master) base image. Then we first need to clone this project and build the sflinux/baseimage. Information about build this image is here [Docker-BaseImage](https://gitlab.savoirfairelinux.com/erortiz/docker-lampd/tree/master), but in resume you need: