You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/06/20 16:53:22 UTC

[airflow] 23/25: add guidance re yarn build for local virtualenv development (#9411)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 6e53a7721128481ac79ee0f23643d37f6c2885d5
Author: dstandish <ds...@users.noreply.github.com>
AuthorDate: Fri Jun 19 10:20:56 2020 -0700

    add guidance re yarn build for local virtualenv development (#9411)
    
    
    (cherry picked from commit 05ea88869be6a62d312598b5b01095e16f0a16f8)
---
 LOCAL_VIRTUALENV.rst | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/LOCAL_VIRTUALENV.rst b/LOCAL_VIRTUALENV.rst
index cd66ea4..b744fc3 100644
--- a/LOCAL_VIRTUALENV.rst
+++ b/LOCAL_VIRTUALENV.rst
@@ -147,6 +147,13 @@ Activate your virtualenv, e.g. by using ``workon``, and once you are in it, run:
 
   ./breeze initialize-local-virtualenv
 
+5. (optionally) run yarn build if you plan to run the webserver
+
+.. code-block:: bash
+
+    cd airflow/www
+    yarn build
+
 Running Tests
 -------------