From c7467f544c10281538b8504add9510f3fcf20e60 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Fri, 19 Aug 2016 15:27:35 -0700 Subject: [PATCH] Documenting making your own build (#990) --- docs/installation.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/installation.rst b/docs/installation.rst index a2bffb4d1ca8b..c70cc0082ead6 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -293,3 +293,19 @@ Upgrading should be as straightforward as running:: pip install caravel --upgrade caravel db upgrade + + +Making your own build +--------------------- + +For more advanced users, you may want to build Caravel from sources. That +would be the case if you fork the project to add features specific to +your environment.:: + + # assuming $CARAVEL_HOME as the root of the repo + cd $CARAVEL_HOME/caravel/assets + npm install + npm run prod + cd $CARAVEL_HOME + python setup.py install +