actix setup
This commit is contained in:
parent
db982731e7
commit
2d5a3a8310
4 changed files with 38 additions and 3 deletions
|
@ -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"]}
|
||||
|
||||
|
|
6
crates/backend/src/controller.rs
Normal file
6
crates/backend/src/controller.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
use actix_web::web::{self, ServiceConfig};
|
||||
|
||||
pub fn register_controllers(cfg: &mut ServiceConfig) {
|
||||
cfg.service(web::scope("/users"));
|
||||
|
||||
}
|
|
@ -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
|
||||
}
|
4
crates/migrations/Cargo.toml
Normal file
4
crates/migrations/Cargo.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[package]
|
||||
name = "migrations"
|
||||
version = {workspace = true}
|
||||
edition = {workspace = true}
|
Loading…
Add table
Reference in a new issue