This is an automated email from the ASF dual-hosted git repository. ash pushed a commit to branch v2-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 192882537ae764b76edf3ef5233797159e0aad51 Author: Jarek Potiuk <[email protected]> AuthorDate: Tue May 18 11:16:12 2021 +0200 Add proper rat-excludes and missing licence (#15908) (cherry picked from commit 208b0c717e2b492f69c45db75bb0eac945f2311d) --- .rat-excludes | 9 +++++++++ airflow/ui/.env.example | 17 +++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/.rat-excludes b/.rat-excludes index f6ee041..145bdf6 100644 --- a/.rat-excludes +++ b/.rat-excludes @@ -98,3 +98,12 @@ input_notebook.ipynb # .git might be a file in case of worktree .git tmp + +# Vendored-in code +_vendor + +# generated doc-only-changes.txt +.latest-doc-only-change.txt + +# generated provider_packages +provider_packages diff --git a/airflow/ui/.env.example b/airflow/ui/.env.example index 0912d86..454c936 100644 --- a/airflow/ui/.env.example +++ b/airflow/ui/.env.example @@ -1 +1,18 @@ +#!/usr/bin/env bash +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. WEBSERVER_URL = 'http://127.0.0.1:28080'
