ddev / ddev-platformsh

Add integration with Platform.sh hosting service
Apache License 2.0
9 stars 10 forks source link

Python-based app fails to start #116

Closed gilzow closed 10 months ago

gilzow commented 10 months ago

Per request from @rfay submitting this ticket After running through config and adding the integration, ddev start / ddev restart fails with

Failed to get project(s): unsupported PHP version: python:3.11, ddev only supports the following versions: [5.6 7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2]

Project repository Terminal output for setup

❯ ddev --version
ddev version v1.22.1

.ddev/config.yaml

name: platformify-cookies-app
type: python
docroot: ""
php_version: "8.1"
webserver_type: nginx-gunicorn

.ddev/config.platformsh.yaml

# #ddev-generated
# Generated configuration based on platform.sh project configuration
disable_settings_management: true

php_version: python:3.11
rfay commented 10 months ago

Thanks for this issue!

ddev-platformsh currently supports only projects of type php, even though DDEV itself has experimental support for python, etc.

gilzow commented 10 months ago

🖖