We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6007e7e + 420e5f5 commit 8f62b23Copy full SHA for 8f62b23
scripts/startup
@@ -21,6 +21,8 @@ def update_vcap_services(database_endpoint):
21
if database_endpoint:
22
if 'postgres' in database_endpoint:
23
vcap_services['PostgreSQL'] = [{'credentials': { 'uri': database_endpoint } }]
24
+ if 'mysql' in database_endpoint:
25
+ vcap_services['p.mysql'] = [{'credentials': { 'uri': database_endpoint } }]
26
if 'sqlserver' in database_endpoint:
27
# Without DATABASE_URL env var, cf-mendix-buildpack supports sqlserver as azure-sqldb
28
vcap_services['azure-sqldb'] = [{'credentials': { 'jdbcUrl': database_endpoint } }]
0 commit comments