binding depends on compilation
This commit is contained in:
parent
50307d0c3e
commit
1bc845b398
2 changed files with 14 additions and 1 deletions
|
@ -4,6 +4,7 @@ use actix_web::{
|
|||
web, App, HttpServer,
|
||||
};
|
||||
use std::io::Result;
|
||||
use utils::misc::is_debug;
|
||||
|
||||
use crate::routes::{
|
||||
agreements, api_v1, blog, contact, contrib, cours, cv, gaming, index, memorial, not_found,
|
||||
|
@ -20,7 +21,10 @@ mod utils;
|
|||
async fn main() -> Result<()> {
|
||||
let config = config::get_configuration("./config/config.toml");
|
||||
|
||||
let addr = ("0.0.0.0", config.fc.port.unwrap());
|
||||
let addr = (
|
||||
if is_debug() { "127.0.0.1" } else { "0.0.0.0" },
|
||||
config.fc.port.unwrap(),
|
||||
);
|
||||
|
||||
println!(
|
||||
"Listening to {}://{}:{}",
|
||||
|
|
|
@ -87,3 +87,12 @@ fn read_pdf(data: Vec<u8>) -> File {
|
|||
),
|
||||
}
|
||||
}
|
||||
#[cfg(debug_assertions)]
|
||||
pub fn is_debug() -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
#[cfg(not(debug_assertions))]
|
||||
pub fn is_debug() -> bool {
|
||||
false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue