This is an automated email from the ASF dual-hosted git repository. skrawcz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/burr.git
commit 45c0538f3318973f57dd40dbc80b2652d992c122 Author: echonesis <[email protected]> AuthorDate: Wed Dec 3 14:36:52 2025 +0800 fix: add ASF license section --- examples/deployment/vercel/README.md | 19 +++++++++++++++++++ examples/deployment/vercel/api/counter.py | 17 +++++++++++++++++ examples/deployment/vercel/app/__init__.py | 16 ++++++++++++++++ examples/deployment/vercel/app/counter_app.py | 17 +++++++++++++++++ examples/deployment/vercel/requirements.txt | 1 + 5 files changed, 70 insertions(+) diff --git a/examples/deployment/vercel/README.md b/examples/deployment/vercel/README.md index 8b95a152..13762fb3 100644 --- a/examples/deployment/vercel/README.md +++ b/examples/deployment/vercel/README.md @@ -1,3 +1,22 @@ +<!-- + 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. +--> + # Deploy Burr in Vercel [Vercel](https://vercel.com/) - serverless platform for frontend frameworks and serverless functions. diff --git a/examples/deployment/vercel/api/counter.py b/examples/deployment/vercel/api/counter.py index 89055b0c..fd4e53c3 100644 --- a/examples/deployment/vercel/api/counter.py +++ b/examples/deployment/vercel/api/counter.py @@ -1,3 +1,20 @@ +# 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. + """ Vercel Serverless Function for counter application Endpoint: /api/counter diff --git a/examples/deployment/vercel/app/__init__.py b/examples/deployment/vercel/app/__init__.py index e69de29b..13a83393 100644 --- a/examples/deployment/vercel/app/__init__.py +++ b/examples/deployment/vercel/app/__init__.py @@ -0,0 +1,16 @@ +# 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. diff --git a/examples/deployment/vercel/app/counter_app.py b/examples/deployment/vercel/app/counter_app.py index f6ff1146..06697427 100644 --- a/examples/deployment/vercel/app/counter_app.py +++ b/examples/deployment/vercel/app/counter_app.py @@ -1,3 +1,20 @@ +# 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. + """ This is a very simple counting application. diff --git a/examples/deployment/vercel/requirements.txt b/examples/deployment/vercel/requirements.txt index a78cac9d..c10793cb 100644 --- a/examples/deployment/vercel/requirements.txt +++ b/examples/deployment/vercel/requirements.txt @@ -1 +1,2 @@ burr +# for tracking you'd add extra dependencies
