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.
1 parent af4a031 commit ebd47b1Copy full SHA for ebd47b1
src/config.rs
@@ -131,7 +131,10 @@ impl Config {
131
#[cfg(test)]
132
s3_bucket_is_temporary: false,
133
134
- s3_static_root_path: env("S3_STATIC_ROOT_PATH", "https://static.docs.rs".to_string())?,
+ s3_static_root_path: env(
135
+ "DOCSRS_S3_STATIC_ROOT_PATH",
136
+ "https://static.docs.rs".to_string(),
137
+ )?,
138
139
github_accesstoken: maybe_env("DOCSRS_GITHUB_ACCESSTOKEN")?,
140
github_updater_min_rate_limit: env("DOCSRS_GITHUB_UPDATER_MIN_RATE_LIMIT", 2500)?,
0 commit comments