I have a mysql in the toml file, with [experimental]/cmd.
[experimental]
cmd = [
"--default-authentication-plugin",
"mysql_native_password",
"--datadir", "/data/mysql",
"--performance-schema=OFF",
"--innodb-buffer-pool-size", "64M"
]
In the “App Configuration Release” section of the documentation I see that there are the [processes] and [deploy] options, but it is not exactly what I am looking for, what would be the alternative?
Thanks