dev-samples

Results 5 comments of dev-samples

@EvgeniaBzzz first thanks for getting back so quickly! ❤️ I did take a look at: https://github.com/dbeaver/cloudbeaver/wiki/Server-configuration but in the sample provided in the `server.database` scope I assume thats for the...

Yes and when I start the app I do see the following values: **/opt/cloudbeaver/workspace/.data/.cloudbeaver.runtime.conf** ` "systemVariablesResolvingEnabled": true,` In: ``` root@4f5d975fcd14:/opt/cloudbeaver/conf# cat /opt/cloudbeaver/workspace/.data/.cloudbeaver.runtime.conf { "server": { "serverName": "cloudbeaver", "expireSessionAfterPeriod": 604800000, "productSettings":...

It works thanks! And same for mysql dbname, mysql username and password: ``` "mysql8-18f4fad411e-67d520a52b28e036": { "provider": "mysql", "driver": "mysql8", "name": "MySQL@${mysql.hostname}:3306", "save-password": true, "configuration": { "host": "${mysql.hostname}", "port": "3306", "database":...

Actually it looks like its working, just had to put the debugpy configs in the route: ``` @app.route("/") def hello(): if(not debugpy.is_client_connected()): debugpy.listen(('0.0.0.0', 4444)) print("Waiting for debugger attach") debugpy.wait_for_client() debugpy.breakpoint()...

Not really consistent though, I did find: https://github.com/microsoft/debugpy/issues/1536 https://stackoverflow.com/questions/78288758/debugpy-problem-vs-code-debugpy-not-responding-to-cmd-thread-suspend-single-not but not sure its 100% related