add example .env, don't unwrap postgres error but log it

This commit is contained in:
sam 2023-10-18 17:22:25 +02:00
parent b050eaac9b
commit 937c6e8451
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
3 changed files with 13 additions and 4 deletions

2
.env.example Normal file
View file

@ -0,0 +1,2 @@
DATABASE=postgresql://postgres:postgres@localhost/postgres
PORT=3000

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
/target
.vscode
.env

View file

@ -9,7 +9,7 @@ use axum::{routing::get, Router};
use clap::Parser;
use sqlx::postgres::PgPoolOptions;
use tower_http::trace::TraceLayer;
use tracing::debug;
use tracing::{debug, error, info};
use crate::config::Config;
use crate::state::AppState;
@ -26,19 +26,25 @@ async fn main() {
let config = Config::parse();
let pool = PgPoolOptions::new()
let pool = match PgPoolOptions::new()
.max_connections(500)
.connect(&config.database)
.await
.unwrap();
.await {
Ok(pool) => pool,
Err(err) => return error!("Initializing database: {}", err)
};
let state = Arc::new(AppState { pool });
debug!("Building router");
let app = Router::new()
.route("/", get(|| async { "Hello, World!" }))
.layer(TraceLayer::new_for_http())
.with_state(state);
info!("Listening on port {}", config.port);
let socket = SocketAddr::new(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)), config.port);
axum::Server::bind(&socket)
.serve(app.into_make_service())