chore: fix APP_HOME with '.' as default

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-08 20:48:33 +01:00
parent 6aea11cde4
commit 4998414e68
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ impl AppInfo {
}
}
pub fn load_data(&self,app_env: &AppEnv) -> Self {
let usedata = match std::fs::read_to_string(format!("{}/{}/.use",&envmnt::get_or("APP_HOME", ""),app_env.get_curr_websrvr_config().home_path)) {
let usedata = match std::fs::read_to_string(format!("{}/{}/.use",&envmnt::get_or("APP_HOME", "."),app_env.get_curr_websrvr_config().home_path)) {
Ok(res) => res,
// Err(e) => { println!("Error usedata: {}",e); String::from("")},
Err(_) => String::from(""),

View File

@ -171,7 +171,7 @@ impl Config {
if verbose != "quiet" {
println!("Config Loaded successfully");
}
let app_home=envmnt::get_or("APP_HOME", "");
let app_home=envmnt::get_or("APP_HOME", ".");
// if app_home.is_empty() {
// cfg
// } else {

View File

@ -12,7 +12,7 @@ pub fn load_from_module(env: AppEnv, coll_key: &str) -> (String,String) {
if let Some(module) = env.modules.get(coll_key) {
match module.stores.to_owned().as_str() {
"file" => {
let store_root =format!("{}/{}/{}",&envmnt::get_or("APP_HOME", ""),&env.get_curr_websrvr_config().home_path,&module.store_root);
let store_root =format!("{}/{}/{}",&envmnt::get_or("APP_HOME", "."),&env.get_curr_websrvr_config().home_path,&module.store_root);
(module.store_frmt.to_owned(), load_fs_content(&store_root, &module.store_path, &module.store_frmt))
},
_ => {