我的 Rocket 应用程序有以下工作数据库连接设置:
main.rs:
#[database("my_db")]
pub struct DbConn(diesel::PgConnection);
Rocket.toml:
[global.databases]
my_db = { url = "postgres://user:pass@localhost/my_db" }
我想从环境中设置用户名、密码和数据库名称。期望它是类似的东西ROCKET_MY_DB=postgres://user:pass@localhost/my_db
,但它没有工作。无法找到 Rocket 的相关数据库示例。