actix setup

This commit is contained in:
Sphereso 2025-03-27 13:06:56 +01:00
parent db982731e7
commit 2d5a3a8310
4 changed files with 38 additions and 3 deletions

View file

@ -1,4 +1,16 @@
[package]
name = "backend"
version = {workspace = true}
edition = {workspace = true}
edition = {workspace = true}
[dependencies]
actix-web = "4"
actix-session = { version = "0.10", features = ["redis-session"] }
actix-cors = "0.7"
actix-files = "0.6"
tracing-actix-web = "0.7.16"
env_logger = "0.11"
serde = {version = "1", features = ["derive"]}

View file

@ -0,0 +1,6 @@
use actix_web::web::{self, ServiceConfig};
pub fn register_controllers(cfg: &mut ServiceConfig) {
cfg.service(web::scope("/users"));
}

View file

@ -1,4 +1,17 @@
use actix_web::{web, App, HttpResponse, HttpServer, middleware::Logger};
fn main() {
mod controller;
#[actix_web::main]
async fn main() -> std::io::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
HttpServer::new(|| {
App::new()
.wrap(Logger::default())
.configure(controller::register_controllers)
})
.bind(("0.0.0.0", 8080))?
.run()
.await
}

View file

@ -0,0 +1,4 @@
[package]
name = "migrations"
version = {workspace = true}
edition = {workspace = true}