Remove development trash

This commit is contained in:
Augusto Gunsch 2022-01-23 10:45:49 -03:00
parent db3bea33e6
commit d7497218ff
1 changed files with 2 additions and 3 deletions

View File

@ -20,8 +20,7 @@ use database::{WordDb, DbError};
const DB_DIR: &str = "/usr/share/inflectived"; const DB_DIR: &str = "/usr/share/inflectived";
const CACHE_DIR: &str = "/var/cache/inflectived"; const CACHE_DIR: &str = "/var/cache/inflectived";
//const FRONTEND_DIR: &str = "/opt/inflectived"; const FRONTEND_DIR: &str = "/opt/inflectived";
const FRONTEND_DIR: &str = "static";
const MAJOR: i32 = 0; const MAJOR: i32 = 0;
const MINOR: i32 = 1; const MINOR: i32 = 1;
@ -85,7 +84,7 @@ async fn main() {
} }
} }
}, },
("run", matches) => { ("run", _matches) => {
let figment = rocket::Config::figment() let figment = rocket::Config::figment()
.merge(("address", "0.0.0.0")); .merge(("address", "0.0.0.0"));