2017-06-08 07:25:03 +00:00
# Devilbox Documentation
2017-06-15 06:46:50 +00:00
[Overview ](README.md ) |
2017-06-14 07:25:57 +00:00
[Quickstart ](Quickstart.md ) |
[Install ](Install.md ) |
[Update ](Update.md ) |
[Configure ](Configure.md ) |
[Run ](Run.md ) |
[Usage ](Usage.md ) |
2017-06-21 07:19:51 +00:00
[OS ](OS.md ) |
2017-06-14 07:25:57 +00:00
[Backups ](Backups.md ) |
Examples |
[Technical ](Technical.md ) |
[Hacking ](Hacking.md ) |
[FAQ ](FAQ.md )
2017-06-08 07:25:03 +00:00
---
## Examples
2017-06-18 18:20:45 +00:00
1. [Introduction ](#1-introduction )
2017-08-16 07:21:48 +00:00
1. [Framework/CMS tools ](#11-framework-cms-tools )
2. [Code analysis tools ](#12-code-analysis-tools )
2017-08-16 07:16:58 +00:00
2. [Project setup ](#2-project-setup )
2017-08-16 07:21:48 +00:00
1. [Setup CakePHP ](#21-setup-cakephp )
2. [Setup Drupal ](#22-setup-drupal )
3. [Setup Laravel ](#23-setup-laravel )
4. [Setup Phalcon ](#24-setup-phalcon )
5. [Setup Symfony ](#25-setup-symfony )
6. [Setup Wordpress ](#26-setup-wordpress )
7. [Setup Yii ](#27-setup-yii )
8. [Setup Zend ](#28-setup-zend )
2017-08-16 07:16:58 +00:00
3. [Code analysis ](#3-code-analysis )
2017-08-16 07:21:48 +00:00
1. [awesome-ci ](#31-awesome-ci )
2. [phpcs ](#32-phpcs )
3. [eslint ](#33-eslint )
2017-06-08 07:25:03 +00:00
---
2017-06-18 18:20:45 +00:00
## 1. Introduction
2017-06-08 07:25:03 +00:00
2017-08-16 07:16:58 +00:00
The devilbox provides popular tools for setting up and managing major frameworks or content management systems, as well as tools for static code analysis. The following bundled tools are available inside each PHP|HHVM Docker container:
#### 1.1 Framework/CMS tools
You can use the following tools to setup or manage your Frameworks/CMS.
2017-06-08 07:25:03 +00:00
2017-06-18 18:20:45 +00:00
| Binary | Tool name | Framework/CMS |
|------------|-------------------|--------------------|
2017-06-20 19:31:00 +00:00
| `composer` | [composer ](https://getcomposer.org ) | CakePHPi, Symfony, Yii, Zend and others |
2017-06-18 18:20:45 +00:00
| `drush` | [drush ](http://www.drush.org/ ) | Drupal |
| `drupal` | [drupal-consol ](https://drupalconsole.com ) | Drupal |
| `git` | [git ](https://git-scm.com ) | Everything available on github and other git servers |
2017-06-22 09:32:43 +00:00
| `laravel` | [laravel installer ](https://github.com/laravel/installer ) | Laravel |
2017-06-20 10:15:32 +00:00
| `phalcon` | [phalcon devtools ](https://github.com/phalcon/phalcon-devtools ) | Phalcon |
| `symfony` | [symfony installer ](https://github.com/symfony/symfony-installer ) | Symfony |
2017-06-18 18:20:45 +00:00
| `wp` | [wp-cli ](https://wp-cli.org/ ) | Wordpress |
2017-06-15 06:46:50 +00:00
2017-08-16 07:16:58 +00:00
#### 1.2 Code analysis tools
You can use the following tools to analyse and fix your source code files.
| Binary | Tool name | Description |
|------------|-------------------|--------------------|
| `file-cr` , `file-crlf` , `file-empty` , `file-nullbyte-char` , `file-trailing-newline` , `file-trailing-single-newline` , `file-trailing-space` , `file-utf8` , `file-utf8-bom` , `git-conflicts` , `git-ignored` , `inline-css` , `inline-js` , `regex-grep` , `regex-perl` , `syntax-bash` , `syntax-css` , `syntax-js` , `syntax-json` , `syntax-markdown` , `syntax-perl` , `syntax-php` , `syntax-python` , `syntax-ruby` , `syntax-scss` , `syntax-sh` | [awesome-ci ](https://github.com/cytopia/awesome-ci ) | General file, code and repository analysis and linting (Some of them also support to fix the problems) |
| `phpcs` | [phpcs ](https://github.com/squizlabs/PHP_CodeSniffer ) | Lint and optionally fix your PHP files |
| `eslint` | [eslint ](http://eslint.org/ ) | Lint and optionally fix your JS files |
2017-06-15 06:46:50 +00:00
2017-08-16 07:16:58 +00:00
## 2. Project Setup
#### 2.1 Setup CakePHP
2017-06-08 07:25:03 +00:00
2017-07-01 10:40:59 +00:00
> **[Official CakePHP Documentation](https://book.cakephp.org/3.0/en/installation.html)**
2017-06-18 18:20:45 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-cake | /shared/httpd/my-cake | my_cake | loc | http://my-cake.loc |
2017-06-18 18:20:45 +00:00
It will be ready in eight simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install CakePHP via `composer`
4. Symlink webroot directory
5. Add MySQL database
6. Configure datbase connection
7. Setup DNS record
2017-07-03 06:53:48 +00:00
8. Visit http://my-cake.loc in your browser
2017-06-18 18:20:45 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-18 18:20:45 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-cake
# 3. Install CakePHP via composer
devilbox@php-7.0.20 in /shared/httpd $ cd my-cake
devilbox@php-7.0.20 in /shared/httpd $ composer create-project --prefer-dist cakephp/app cakephp
# 4. Symlink webroot directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s cakephp/webroot/ htdocs
# 5. Add MySQL datbase
devilbox@php-7.0.20 in /shared/httpd $ mysql -u root -h 127.0.0.1 -p -e 'CREATE DATABASE my_cake;'
# 6. Configure datbase connection
devilbox@php-7.0.20 in /shared/httpd $ vi cakephp/config/app.php
```
```php
< ?php
'Datasources' => [
'default' => [
'className' => 'Cake\Database\Connection',
'driver' => 'Cake\Database\Driver\Mysql',
'persistent' => false,
'host' => '127.0.0.1',
/**
* CakePHP will use the default DB port based on the driver selected
* MySQL on MAMP uses port 8889, MAMP users will want to uncomment
* the following line and set the port accordingly
*/
//'port' => 'non_standard_port_number',
'username' => 'root',
'password' => 'secret',
'database' => 'my_cake',
'encoding' => 'utf8',
'timezone' => 'UTC',
'flags' => [],
'cacheMetadata' => true,
```
**7. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-cake.loc
2017-06-18 18:20:45 +00:00
```
**8. Open your browser**
2017-07-03 06:53:48 +00:00
All set now, you can visit http://my-cake.loc in your browser.
2017-06-18 18:20:45 +00:00
2017-06-22 09:32:43 +00:00
2017-08-16 07:16:58 +00:00
#### 2.2 Setup Drupal
2017-06-18 18:20:45 +00:00
2017-07-01 10:40:59 +00:00
> **[Official Drupal Documentation](https://www.drupal.org/docs/7/install)**
2017-06-18 18:20:45 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-drupal | /shared/httpd/my-drupal | my_drupal| loc | http://my-drupal.loc |
2017-06-18 18:20:45 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Drupal via `drush`
4. Symlink Drupal directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-drupal.loc in your browser and follow instructions
2017-06-18 18:20:45 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-18 18:20:45 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-drupal
# 3. Install Drupal via drush
devilbox@php-7.0.20 in /shared/httpd $ cd my-drupal
devilbox@php-7.0.20 in /shared/httpd $ drush dl drupal
# 4. Symlink Drupal directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s drupal-8.3.3 htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-drupal.loc
2017-06-18 18:20:45 +00:00
```
**6. Open your browser**
2017-07-03 06:53:48 +00:00
Open your browser at http://my-drupal.loc and follow the Drupal installation steps.
2017-06-18 18:20:45 +00:00
**Note:** For MySQL host choose `127.0.0.1` .
2017-06-22 09:32:43 +00:00
2017-08-16 07:16:58 +00:00
#### 2.3 Setup Laravel
2017-07-01 10:40:59 +00:00
> **[Official Laravel Documentation](https://laravel.com/docs/5.4/installation)**
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-laravel | /shared/httpd/my-laravel | - | loc | http://my-laravel.loc |
2017-07-01 10:40:59 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Laravel via `laravel`
4. Symlink public directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-laravel.loc in your browser
2017-07-01 10:40:59 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-07-01 10:40:59 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-laravel
# 3. Install Laravel via laravel
devilbox@php-7.0.20 in /shared/httpd $ cd my-laravel
devilbox@php-7.0.20 in /shared/httpd $ laravel new laravel-project
# 4. Symlink public directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s laravel-project/public htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-laravel.loc
2017-07-01 10:40:59 +00:00
```
**6. Open your browser**
2017-07-03 06:53:48 +00:00
Open your browser at http://my-laravel.loc
2017-07-01 10:40:59 +00:00
2017-08-16 07:16:58 +00:00
#### 2.4 Setup Phalcon
2017-07-01 10:40:59 +00:00
> **[Official Phalcon Documentation](https://docs.phalconphp.com/en/3.2/devtools-usage)**
2017-06-20 19:31:00 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-phalcon | /shared/httpd/my-phalcon | - | loc | http://my-phalcon.loc |
2017-06-20 19:31:00 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Phalcon via `phalcon`
4. Symlink public directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-phalcon.loc in your browser
2017-06-20 19:31:00 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-20 19:31:00 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-phalcon
# 3. Install Phalcon via phalcon
devilbox@php-7.0.20 in /shared/httpd $ cd my-phalcon
devilbox@php-7.0.20 in /shared/httpd $ phalcon project phalconphp
# 4. Symlink public directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s phalconphp/public htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-phalcon.loc
2017-06-20 19:31:00 +00:00
```
2017-07-01 10:40:59 +00:00
**6. Open your browser**
2017-06-20 19:31:00 +00:00
2017-07-03 06:53:48 +00:00
Open your browser at http://my-phalcon.loc
2017-06-20 19:31:00 +00:00
2017-08-16 07:16:58 +00:00
#### 2.5 Setup Symfony
2017-07-01 10:40:59 +00:00
> **[Official Symfony Documentation](https://symfony.com/doc/current/setup.html)**
2017-06-18 18:20:45 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-symfony | /shared/httpd/my-symfony | - | loc | http://my-symfony.loc |
2017-06-18 18:20:45 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Symfony via `symfony`
4. Symlink web directory
2017-06-20 10:15:32 +00:00
5. Enable Symfony prod (app.php)
6. Setup DNS record
2017-07-03 06:53:48 +00:00
7. Visit http://my-symfony.loc in your browser
2017-06-18 18:20:45 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-18 18:20:45 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-symfony
# 3. Install Symfony via symfony
devilbox@php-7.0.20 in /shared/httpd $ cd my-symfony
devilbox@php-7.0.20 in /shared/httpd $ symfony new symfony
# 4. Symlink web directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s symfony/web htdocs
2017-06-20 10:15:32 +00:00
# 5. Enable Symfony production (app.php)
devilbox@php-7.0.20 in /shared/httpd $ cd symfony/web
devilbox@php-7.0.20 in /shared/httpd $ ln -s app.php index.php
2017-06-18 18:20:45 +00:00
```
2017-06-20 10:15:32 +00:00
**6. DNS record**
2017-06-18 18:20:45 +00:00
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-symfony.loc
2017-06-18 18:20:45 +00:00
```
2017-06-20 10:15:32 +00:00
**7. Open your browser**
2017-06-18 18:20:45 +00:00
2017-07-03 06:53:48 +00:00
Open your browser at http://my-symfony.loc
2017-06-20 19:31:00 +00:00
2017-06-18 18:20:45 +00:00
2017-08-16 07:16:58 +00:00
#### 2.6 Setup Wordpress
2017-07-01 10:40:59 +00:00
> **[Official Wordpress Documentation](https://codex.wordpress.org/Installing_WordPress)**
2017-06-18 18:20:45 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-wp | /shared/httpd/my-wp | my_wp | loc | http://my-wp.loc |
2017-06-18 18:20:45 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Download Wordpress via `git`
4. Symlink wordpress git directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-wp.loc in your browser
2017-06-18 18:20:45 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-18 18:20:45 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-wp
# 3. Download Wordpress via git
devilbox@php-7.0.20 in /shared/httpd $ cd my-wp
devilbox@php-7.0.20 in /shared/httpd $ git clone https://github.com/WordPress/WordPress wordpress.git
# 4. Symlink wordpress git directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s wordpress.git htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-wp.loc
2017-06-18 18:20:45 +00:00
```
**6. Open your browser**
2017-07-03 06:53:48 +00:00
Open your browser at http://my-wp.loc
2017-06-18 18:20:45 +00:00
2017-06-20 19:31:00 +00:00
2017-08-16 07:16:58 +00:00
#### 2.7 Setup Yii
2017-07-01 10:40:59 +00:00
> **[Official Yii Documentation](http://www.yiiframework.com/doc-2.0/guide-start-installation.html)**
2017-06-18 18:20:45 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-yii | /shared/httpd/my-yii | - | loc | http://my-yii.loc |
2017-06-18 18:20:45 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Yii2 via `composer`
4. Symlink web directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-yii.loc in your browser
2017-06-18 18:20:45 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-18 18:20:45 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-yii
# 3. Install Yii2 via composer
devilbox@php-7.0.20 in /shared/httpd $ cd my-yii
devilbox@php-7.0.20 in /shared/httpd $ composer create-project --prefer-dist --stability=dev yiisoft/yii2-app-basic yii2-dev
# 4. Symlink web directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s yii2-dev/web htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-yii.loc
2017-06-18 18:20:45 +00:00
```
**6. Open your browser**
2017-07-03 06:53:48 +00:00
Open your browser at http://my-yii.loc
2017-06-20 19:31:00 +00:00
2017-08-16 07:16:58 +00:00
#### 2.8 Setup Zend
2017-07-01 10:40:59 +00:00
> **[Official Zend Documentation](https://docs.zendframework.com/tutorials/getting-started/skeleton-application/)**
2017-06-20 19:31:00 +00:00
The following configuration will be used:
| Project name | VirtualHost directory | Database | TLD_SUFFIX | Url |
|--------------|-----------------------|------------|------------|-----|
2017-07-03 06:53:48 +00:00
| my-zend | /shared/httpd/my-zend | - | loc | http://my-zend.loc |
2017-06-20 19:31:00 +00:00
It will be ready in six simple steps:
1. Enter the PHP container
2. Create a new VirtualHost directory
3. Install Zendframework via `composer`
4. Symlink public directory
5. Setup DNS record
2017-07-03 06:53:48 +00:00
6. Visit http://my-zend.loc in your browser
2017-06-20 19:31:00 +00:00
```shell
# 1. Enter the PHP container
2017-08-17 19:20:41 +00:00
host> ./shell.sh
2017-06-20 19:31:00 +00:00
# 2. Create a new VirtualHost directory
devilbox@php-7.0.20 in /shared/httpd $ mkdir my-zend
# 3. Install Zendframework via composer
devilbox@php-7.0.20 in /shared/httpd $ cd my-zend
devilbox@php-7.0.20 in /shared/httpd $ composer create-project --prefer-dist zendframework/skeleton-application zend
# 4. Symlink public directory
devilbox@php-7.0.20 in /shared/httpd $ ln -s zend/public htdocs
```
**5. DNS record**
If you do not have auto-DNS configured, you will need to add the following line to your Host computer's `/etc/hosts` :
```shell
2017-07-03 06:53:48 +00:00
127.0.0.1 my-zend.loc
2017-06-20 19:31:00 +00:00
```
2017-07-01 10:40:59 +00:00
**6. Open your browser**
2017-06-20 19:31:00 +00:00
2017-07-03 06:53:48 +00:00
Open your browser at http://my-zend.loc
2017-08-16 07:16:58 +00:00
## 3. Code analysis
#### 3.1 awesome-ci
**[awesome-ci](https://github.com/cytopia/awesome-ci)** is a collection of tools for analysing your workspace and its files. You can for example check for:
* git conflicts
* git ignored files that have not been removed from the git index
* trailing spaces and newlines
* non-utf8 files or utf8 files with bom
* windows line feeds
* null-byte characters
* empty files
* syntax errors for various languages
* inline css or js code
* customized regex
Some of the bundled tools allow for automatic fixing. See the project page for how to use it: [https://github.com/cytopia/awesome-ci ](https://github.com/cytopia/awesome-ci ).
The following shows an example how to use it with the devilbox:
```shell
# 1. Enter your PHP/HHVM container
host> ./bash
# 2. Go to your project folder
devilbox@php-7.0.20 $ cd /shared/httpd/my-project
# 3. Run the tools
devilbox@php-7.0.20 $ git-conflicts --path=.
devilbox@php-7.0.20 $ git-ignored --path=.
devilbox@php-7.0.20 $ file-cr --path=.
devilbox@php-7.0.20 $ file-crlf --path=.
devilbox@php-7.0.20 $ file-empty --path=.
# 4. Run tools with more options
devilbox@php-7.0.20 $ syntax-php --path=. --extension=php
devilbox@php-7.0.20 $ syntax-php --path=. --shebang=php
...
```
#### 3.2 phpcs
**[phpcs](https://github.com/squizlabs/PHP_CodeSniffer)** is also available the devilbox:
```shell
# 1. Enter your PHP/HHVM container
host> ./bash
# 2. Go to your project folder
devilbox@php-7.0.20 $ cd /shared/httpd/my-project
# 3. Run it
devilbox@php-7.0.20 $ phpcs .
```
For more details visit its project page [https://github.com/squizlabs/PHP_CodeSniffer ](https://github.com/squizlabs/PHP_CodeSniffer ).
#### 3.3 eslint
**[eslint](http://eslint.org/)** is also available the devilbox:
```shell
# 1. Enter your PHP/HHVM container
host> ./bash
# 2. Go to your project folder
devilbox@php-7.0.20 $ cd /shared/httpd/my-project
# 3. Run it
devilbox@php-7.0.20 $ eslint .
```
For more details visit its project page [http://eslint.org ](http://eslint.org ).