From 18f4b2005a5512ccc5f9c8a33c99bd3846360ef5 Mon Sep 17 00:00:00 2001 From: Fabien Arcellier Date: Mon, 19 Feb 2024 15:08:01 +0100 Subject: [PATCH] feat: allow running review app to validate PR from external contribution * configure buildpack to build poetry application --- .buildpacks | 2 -- Procfile | 1 + runtime.txt | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 .buildpacks create mode 100644 Procfile create mode 100644 runtime.txt diff --git a/.buildpacks b/.buildpacks deleted file mode 100644 index 0d20786e3..000000000 --- a/.buildpacks +++ /dev/null @@ -1,2 +0,0 @@ -https://github.com/moneymeets/python-poetry-buildpack.git -https://github.com/Scalingo/python-buildpack \ No newline at end of file diff --git a/Procfile b/Procfile new file mode 100644 index 000000000..7d136d981 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: streamsync edit --port $PORT --host 0.0.0.0 apps/hello \ No newline at end of file diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 000000000..fefae710d --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.11.4 \ No newline at end of file