mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
Instructions for local development
This commit is contained in:
parent
854d3443d7
commit
9ecb97704a
2 changed files with 12 additions and 2 deletions
10
README.md
10
README.md
|
@ -26,6 +26,7 @@ Interested in contributing? Great! Please read our [contributor guidelines](http
|
||||||
* [Database Services](#databases)
|
* [Database Services](#databases)
|
||||||
* [Caching](#caching)
|
* [Caching](#caching)
|
||||||
* [Params Injection](#params-injection)
|
* [Params Injection](#params-injection)
|
||||||
|
* [Local development](#local-development)
|
||||||
* [Documentation and References](#docs)
|
* [Documentation and References](#docs)
|
||||||
|
|
||||||
### System
|
### System
|
||||||
|
@ -306,6 +307,15 @@ notify:
|
||||||
|
|
||||||
![params-injection](https://f.cloud.github.com/assets/1583973/2161187/2905077e-94c3-11e3-8499-a3844682c8af.png)
|
![params-injection](https://f.cloud.github.com/assets/1583973/2161187/2905077e-94c3-11e3-8499-a3844682c8af.png)
|
||||||
|
|
||||||
|
### Local development
|
||||||
|
|
||||||
|
Local Drone setup for development is pretty straightforward.
|
||||||
|
|
||||||
|
You will need to clone the repo, install Vagrant and run `vagrant up`.
|
||||||
|
This command will download base Ubuntu image, setup the virtual machine and build Drone.
|
||||||
|
|
||||||
|
Afterwards, you will need to [install Docker in this VM manually](http://docs.docker.io/en/latest/installation/ubuntulinux/).
|
||||||
|
|
||||||
### Docs
|
### Docs
|
||||||
|
|
||||||
* [drone.readthedocs.org](http://drone.readthedocs.org/) (Coming Soon)
|
* [drone.readthedocs.org](http://drone.readthedocs.org/) (Coming Soon)
|
||||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -14,7 +14,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
|
|
||||||
# FIXME: Maybe this is enough
|
# FIXME: Maybe this is enough
|
||||||
config.vm.provider "virtualbox" do |v|
|
config.vm.provider "virtualbox" do |v|
|
||||||
v.customize ["modifyvm", :id, "--memory", "1024"]
|
v.customize ["modifyvm", :id, "--memory", "2048"]
|
||||||
end
|
end
|
||||||
|
|
||||||
# Drone by default runs on port 80. Forward from host to guest
|
# Drone by default runs on port 80. Forward from host to guest
|
||||||
|
|
Loading…
Reference in a new issue