You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Bo-Yi Wu bb34f5c751
update readme.
6 vuotta sitten
app initial laravel 5.4 6 vuotta sitten
bootstrap initial laravel 5.4 6 vuotta sitten
config initial laravel 5.4 6 vuotta sitten
database initial laravel 5.4 6 vuotta sitten
public updae frontend process 6 vuotta sitten
resources update readme. 6 vuotta sitten
routes initial laravel 5.4 6 vuotta sitten
storage initial laravel 5.4 6 vuotta sitten
tests add redis testing. 6 vuotta sitten
.drone.yml add secret for fb 6 vuotta sitten
.env.example update 6 vuotta sitten
.gitattributes initial laravel 5.4 6 vuotta sitten
.gitignore add yarn 6 vuotta sitten
LICENSE Initial commit 6 vuotta sitten
Makefile add prefer dist 6 vuotta sitten
README.md update readme. 6 vuotta sitten
artisan initial laravel 5.4 6 vuotta sitten
composer.json add redis testing. 6 vuotta sitten
composer.lock add redis testing. 6 vuotta sitten
package.json updae frontend process 6 vuotta sitten
phpunit.xml add redis testing. 6 vuotta sitten
server.php initial laravel 5.4 6 vuotta sitten
webpack.mix.js initial laravel 5.4 6 vuotta sitten
yarn.lock add yarn 6 vuotta sitten

README.md

Laravel + Drone

Drone is a Continuous Delivery system built on container technology. Drone uses a simple yaml configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.

Screenshots

clone:
  git:
    image: plugins/git
    depth: 50
    tags: true

pipeline:
  frontend:
    image: node:8.1.2
    group: laravel
    commands:
      - node -v
      - npm -v
      - yarn --version
      - yarn config set cache-folder .yarn-cache
      - yarn install
      - yarn run production

  backend:
    image: laradock/workspace:1.8-71
    group: laravel
    commands:
      - php -v
      - composer -V
      - cp .env.example .env
      - composer install --prefer-dist
      - php artisan key:generate
      - php artisan migrate
      - ./vendor/bin/phpunit

  fb:
    image: appleboy/drone-facebook
    pull: true
    secrets: [ fb_page_token, fb_verify_token ]
    to: 1234973386524610
    when:
      event: [ push, pull_request ]
      status: [ success, failure ]

services:
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:5.3.0

  redis:
    image: redis:latest

  postgres:
    image: postgres:9.5.5
    environment:
      - POSTGRES_DB=homestead
      - POSTGRES_USER=homestead
      - POSTGRES_PASSWORD=secret