Repository: incubator-airflow Updated Branches: refs/heads/master 8a2d24856 -> da76ac72e
[AIRFLOW-1476] add INSTALL instruction for source releases Closes #2492 from mistercrunch/install Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/da76ac72 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/da76ac72 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/da76ac72 Branch: refs/heads/master Commit: da76ac72e81a8ee3d5795b61d93d6d617bf85292 Parents: 8a2d248 Author: Maxime Beauchemin <[email protected]> Authored: Mon Sep 11 15:23:29 2017 +0200 Committer: Bolke de Bruin <[email protected]> Committed: Mon Sep 11 15:23:29 2017 +0200 ---------------------------------------------------------------------- .rat-excludes | 10 ++++++++++ INSTALL | 9 +++++++++ 2 files changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/da76ac72/.rat-excludes ---------------------------------------------------------------------- diff --git a/.rat-excludes b/.rat-excludes index d5b8b4e..725a305 100644 --- a/.rat-excludes +++ b/.rat-excludes @@ -25,3 +25,13 @@ CHANGELOG.txt kerberos_auth.py airflow_api_auth_backend_kerberos_auth_py.html licenses/* +airflow/www/static/docs +parallel.js +underscore.js +jquery.dataTables.min.js +jqClock.min.js +dagre-d3.min.js +bootstrap-toggle.min.js +bootstrap-toggle.min.css +d3.v3.min.js +ace.js http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/da76ac72/INSTALL ---------------------------------------------------------------------- diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..7e5bf50 --- /dev/null +++ b/INSTALL @@ -0,0 +1,9 @@ +# INSTALL / BUILD instruction for Apache Airflow (incubating) +# fetch the tarball and untar the source + +# [optional] run Apache RAT (release audit tool) to validate license headers +# RAT docs here: https://creadur.apache.org/rat/ +java -jar apache-rat.jar -E ./.rat-excludes -d . + +# install the release +python setup.py install
