Add documentation about contributing to Willow

pull/44/head
Sævar Öfjörð Magnússon 2022-06-16 16:21:49 +02:00
rodzic a19af88852
commit 7ba9d32408
2 zmienionych plików z 12 dodań i 0 usunięć

Wyświetl plik

@ -20,3 +20,9 @@ RUN pip install --upgrade pip \
COPY ./wagtail /code/wagtail/
RUN cd /code/wagtail/ \
&& pip install -e .[testing,docs]
# Install Willow from the host. This folder will be overwritten by a volume mount during run time (so that code
# changes show up immediately), but it also needs to be copied into the image now so that Willow can be pip install'd.
COPY ./libs/willow /code/willow/
RUN cd /code/willow/ \
&& pip install -e .[testing]

Wyświetl plik

@ -133,6 +133,12 @@ git remote add upstream git@github.com:wagtail/wagtail.git
git pull --all
```
Contributing to Willow
----------------------
You can use the same setup to contribute to Willow.
You simply do the same operations to fork the Willow project and point your local copy of Willow to your fork.
TODO
----