Make migrations optional and change the table name to not conflict with other applications
Build and Publish Docker Container / build (push) Successful in 7m33s

This commit is contained in:
2023-09-05 18:29:35 +01:00
parent f7c48b6924
commit 550b4758b2
2 changed files with 10 additions and 1 deletions
+6 -1
View File
@@ -12,6 +12,8 @@ use crate::ingestion::routes::{monzo_batched_csv, monzo_batched_json, monzo_upda
#[derive(Debug, clap::Parser)]
struct Config {
#[clap(short, long, env, default_value_t = true)]
migrate: bool,
#[clap(short, long, env, default_value = "0.0.0.0:3000")]
addr: SocketAddr,
#[clap(short, long = "db", env)]
@@ -31,7 +33,10 @@ async fn health_check(
async fn main() -> anyhow::Result<()> {
let config: Config = Config::parse();
let connection = sea_orm::Database::connect(&config.database_url).await?;
Migrator::up(&connection, None).await?;
if config.migrate {
Migrator::up(&connection, None).await?;
}
tracing_subscriber::fmt::init();
let app = Router::new()