sisjar ee39e6ee2a | před 6 roky | |
---|---|---|
app | před 7 roky | |
bootstrap | před 7 roky | |
config | před 7 roky | |
database | před 7 roky | |
public | před 7 roky | |
resources | před 7 roky | |
routes | před 7 roky | |
storage | před 7 roky | |
tests | před 7 roky | |
.drone.yml | před 7 roky | |
.env.example | před 7 roky | |
.gitattributes | před 7 roky | |
.gitignore | před 7 roky | |
LICENSE | před 7 roky | |
Makefile | před 7 roky | |
README.md | před 6 roky | |
artisan | před 7 roky | |
composer.json | před 7 roky | |
composer.lock | před 7 roky | |
package.json | před 7 roky | |
phpunit.xml | před 7 roky | |
server.php | před 7 roky | |
webpack.mix.js | před 7 roky | |
yarn.lock | před 7 roky |
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.
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
Please try the following command to test drone config in local machine.
$ drone exec