From 542166698da4d2e325b2bc8677f58c995618808f Mon Sep 17 00:00:00 2001 From: "randompumuckl@gmail.com" Date: Fri, 4 Oct 2024 09:26:09 +0000 Subject: [PATCH] Automatically migrate old app features --- .anvil_editor.yaml | 6 ++++++ __init__.py | 7 +++++++ anvil.yaml | 7 +++++++ 3 files changed, 20 insertions(+) create mode 100644 .anvil_editor.yaml create mode 100644 __init__.py create mode 100644 anvil.yaml diff --git a/.anvil_editor.yaml b/.anvil_editor.yaml new file mode 100644 index 0000000..9646536 --- /dev/null +++ b/.anvil_editor.yaml @@ -0,0 +1,6 @@ +unique_ids: + assets: {} + forms: {} + modules: {} + scripts: {} + server_modules: {} diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..7273d3a --- /dev/null +++ b/__init__.py @@ -0,0 +1,7 @@ +# +# This repository is an Anvil app. Learn more at https://anvil.works/ +# To run the server-side code on your own machine, run: +# pip install anvil-uplink +# python -m anvil.run_app_via_uplink YourAppPackageName + +__path__ = [__path__[0]+"/server_code", __path__[0]+"/client_code"] diff --git a/anvil.yaml b/anvil.yaml new file mode 100644 index 0000000..204db65 --- /dev/null +++ b/anvil.yaml @@ -0,0 +1,7 @@ +native_deps: + head_html: |2 + + +runtime_options: {client_version: '2', server_spec: null, version: 2}