rename backend binary
ci / docker (backend, backend/Dockerfile, backend) (push) Has been cancelled
ci / docker (frontend, frontend/Dockerfile, frontend) (push) Has been cancelled

This commit is contained in:
2025-10-12 12:13:46 +02:00
parent dc22b12df3
commit 4b74ee54b0
8 changed files with 116 additions and 63 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ use std::env;
use anyhow::{Context, Result};
use diesel::prelude::*;
use papercrate_backend::{
use backend::{
config::AppConfig,
db,
models::DocumentAsset,
+1 -1
View File
@@ -3,7 +3,7 @@ use std::{sync::Arc, time::Duration};
use tokio::signal;
use tracing_subscriber::EnvFilter;
use papercrate_backend::{
use backend::{
auth::jwt::JwtService, config::AppConfig, db, default_handlers, s3::build_client,
state::AppState, storage::S3Storage, Worker,
};
+7 -7
View File
@@ -5,13 +5,13 @@ use tokio::net::TcpListener;
use tower::make::Shared;
use tracing_subscriber::EnvFilter;
use papercrate_backend::auth::jwt::JwtService;
use papercrate_backend::config::AppConfig;
use papercrate_backend::db;
use papercrate_backend::routes;
use papercrate_backend::s3::build_client;
use papercrate_backend::state::AppState;
use papercrate_backend::storage::S3Storage;
use backend::auth::jwt::JwtService;
use backend::config::AppConfig;
use backend::db;
use backend::routes;
use backend::s3::build_client;
use backend::state::AppState;
use backend::storage::S3Storage;
#[tokio::main]
async fn main() -> anyhow::Result<()> {