Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
sisjar ee39e6ee2a Update 'README.md' há 5 anos
app initial laravel 5.4 há 6 anos
bootstrap initial laravel 5.4 há 6 anos
config initial laravel 5.4 há 6 anos
database initial laravel 5.4 há 6 anos
public updae frontend process há 6 anos
resources update readme. há 6 anos
routes initial laravel 5.4 há 6 anos
storage initial laravel 5.4 há 6 anos
tests add redis testing. há 6 anos
.drone.yml add secret for fb há 6 anos
.env.example update há 6 anos
.gitattributes initial laravel 5.4 há 6 anos
.gitignore add yarn há 6 anos
LICENSE Initial commit há 6 anos
Makefile add prefer dist há 6 anos
README.md Update 'README.md' há 5 anos
artisan initial laravel 5.4 há 6 anos
composer.json add redis testing. há 6 anos
composer.lock add redis testing. há 6 anos
package.json updae frontend process há 6 anos
phpunit.xml add redis testing. há 6 anos
server.php initial laravel 5.4 há 6 anos
webpack.mix.js initial laravel 5.4 há 6 anos
yarn.lock add yarn há 6 anos

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

Testing your Drone config

Please try the following command to test drone config in local machine.

$ drone exec