usage.md 646 B

Usage

To start:

./start.sh

Make sure you have the OAuth2 application's Redirect URL set to the suggested one in the output. This is basically the URL to access Drone CI. Go to the URL, click Sync and activate the repo you want to enable Drone for.

Commit a .drone.yml in that repo with something like:

kind: pipeline
type: docker
name: default

steps:
- name: greeting
  image: alpine
  commands:
  - echo hello
  - echo world

After you make the commit, open the Drone UI, go to the repo and see status of the build process. The build should automatically run after each commit.

To stop:

./stop.sh