You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ requirements.txt
30
30
31
31
Besides [`ENV`](env.md) and [`Procfile`](procfile.md), `piku` also looks for runtime-specific files in the root of your app's directory:
32
32
33
-
* If there's a `requirements.txt` file at the top level, then the app is assumed to require Python.
33
+
* If there's a `requirements.txt`or `pyproject.toml`file at the top level, then the app is assumed to require Python. Installing an app with a `pyproject.toml` will require [poetry](https://python-poetry.org/) or [uv](https://docs.astral.sh/uv/).
34
34
* If there's a `Gemfile` at the top level, then the app is assumed to require Ruby.
35
35
* If there's a `package.json` file at the top level, then the app is assumed to require Node.js.
36
36
* If there's a `pom.xml` or a `build.gradle` file at the top level, then the app is assumed to require Java.
@@ -40,4 +40,4 @@ Besides [`ENV`](env.md) and [`Procfile`](procfile.md), `piku` also looks for run
40
40
!!! info
41
41
`go.mod` support is currently in development.
42
42
43
-
These are not exclusive, however. There is also [a sample Phoenix app](../community/examples.md#phoenix) that demonstrates how to add support for additional runtimes.
43
+
These are not exclusive, however. There is also [a sample Phoenix app](../community/examples.md#phoenix) that demonstrates how to add support for additional runtimes.
0 commit comments