mabel/src/main.rs

65 lines
1.5 KiB
Rust
Raw Normal View History

2023-06-29 12:59:39 +00:00
mod auth;
2023-06-28 22:59:26 +00:00
mod content;
2023-06-28 23:21:45 +00:00
mod error;
2023-06-29 12:59:39 +00:00
mod roles;
2023-06-29 12:08:59 +00:00
mod routes;
mod state;
2023-06-28 22:59:26 +00:00
2023-06-28 23:21:45 +00:00
use anyhow::Result;
2023-06-29 12:08:59 +00:00
use axum::{
routing::{get, post},
Router, Server,
};
2023-06-26 08:08:49 +00:00
use figment::{
providers::{Env, Format, Serialized, Toml},
Figment,
};
use serde::{Deserialize, Serialize};
2023-06-29 12:08:59 +00:00
use sqlx::postgres::PgPoolOptions;
use state::AppState;
2023-06-28 22:59:26 +00:00
use std::{net::SocketAddr, sync::Arc};
2023-06-26 08:08:49 +00:00
#[derive(Deserialize, Serialize)]
struct Config {
bind: String,
database_url: String,
}
impl Default for Config {
fn default() -> Self {
Config {
bind: "127.0.0.1:3000".to_owned(),
database_url: "postgres://artificiale:changeme@localhost/artificiale".to_owned(),
}
}
}
#[tokio::main]
async fn main() -> Result<()> {
tracing_subscriber::fmt::init();
let config: Config = Figment::from(Serialized::defaults(Config::default()))
.merge(Toml::file("mabel.toml"))
.merge(Env::prefixed("MABEL_"))
.extract()?;
let pool = PgPoolOptions::new()
.max_connections(5)
.connect(config.database_url.as_str())
.await?;
sqlx::migrate!().run(&pool).await?;
2023-06-28 22:59:26 +00:00
let shared_state = Arc::new(AppState { database: pool });
2023-06-29 12:08:59 +00:00
let app = Router::new()
.route("/pages/:site/:slug", get(routes::content::page))
.route("/admin/bootstrap", post(routes::admin::bootstrap))
.with_state(shared_state);
2023-06-28 22:59:26 +00:00
2023-06-26 08:08:49 +00:00
let addr: SocketAddr = config.bind.parse()?;
tracing::debug!("listening on {}", addr);
2023-06-29 14:42:57 +00:00
Server::bind(&addr).serve(app.into_make_service()).await?;
2023-06-26 08:08:49 +00:00
Ok(())
}