#Setup LEM environment for phpci
https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04
| apiVersion: v2 | |
| publisher: eclipse | |
| name: che-theia | |
| version: next | |
| type: Che Editor | |
| displayName: theia-ide | |
| title: Eclipse Theia development version. | |
| description: Eclipse Theia, get the latest release each day. | |
| icon: https://raw.githubusercontent.com/theia-ide/theia/master/logo/theia-logo-no-text-black.svg?sanitize=true | |
| category: Editor |
| enable systemctl systemd-networkd |
| curl -L -u $BB_USER:$BB_PASS https://bitbucket.org/api/2.0/repositories/[org]/[repo-name]/pullrequests/[pr-number]/diff | git apply |
#Setup LEM environment for phpci
https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-16-04
| #create release | |
| github-release release \ | |
| --user omero \ | |
| --repo ci-from-scratch \ | |
| --tag v0.1.1 \ | |
| --name "The one when we automate all the things" \ | |
| --description "This is a (edit - fixed) fake description" | |
| #edit release | |
| github-release release \ |
A Pen by David DeSandro on CodePen.
Simple lightbox gallery Responsive too (sort of)
v2 - added some responsiveness;)
A Pen by Konstantin Minevich on CodePen.
| # Run this in your terminal to get the latest project version: | |
| curl https://drupalconsole.com/installer -L -o drupal.phar | |
| # Or if you don't have curl: | |
| php -r "readfile('https://drupalconsole.com/installer');" > drupal.phar | |
| # Accessing from anywhere on your system: | |
| mv drupal.phar /usr/local/bin/drupal | |
| # Apply executable permissions on the downloaded file: |
| <?php | |
| $databases['default']['default'] = array ( | |
| 'database' => 'campgdl', | |
| 'username' => 'campgdl', | |
| 'password' => 'campgdl', | |
| 'prefix' => '', | |
| 'host' => '127.0.0.1', | |
| 'port' => '3306', | |
| 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql', |
| [PHP] | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; About php.ini ; | |
| ;;;;;;;;;;;;;;;;;;; | |
| ; PHP's initialization file, generally called php.ini, is responsible for | |
| ; configuring many of the aspects of PHP's behavior. | |
| ; PHP attempts to find and load this configuration from a number of locations. | |
| ; The following is a summary of its search order: |