lemmy/server/src/main.rs

61 lines
1.6 KiB
Rust
Raw Normal View History

extern crate lemmy_server;
2019-07-17 11:11:01 +00:00
#[macro_use]
extern crate diesel_migrations;
2019-07-19 03:05:17 +00:00
use actix_web::*;
use diesel::r2d2::{ConnectionManager, Pool};
use diesel::PgConnection;
2019-12-31 15:44:30 +00:00
use lemmy_server::routes::{federation, feeds, index, nodeinfo, webfinger, websocket};
2019-12-15 16:40:55 +00:00
use lemmy_server::settings::Settings;
2020-01-11 12:30:45 +00:00
use std::io;
embed_migrations!();
2020-01-11 12:30:45 +00:00
#[actix_rt::main]
async fn main() -> io::Result<()> {
env_logger::init();
let settings = Settings::get();
// Set up the r2d2 connection pool
let manager = ConnectionManager::<PgConnection>::new(&settings.get_database_url());
let pool = Pool::builder()
.max_size(settings.database.pool_size)
.build(manager)
.unwrap_or_else(|_| panic!("Error connecting to {}", settings.get_database_url()));
2019-07-20 02:56:40 +00:00
// Run the migrations from code
let conn = pool.get().unwrap();
2019-07-20 02:56:40 +00:00
embedded_migrations::run(&conn).unwrap();
2020-01-11 12:30:45 +00:00
println!(
"Starting http server at {}:{}",
settings.bind, settings.port
);
// Create Http server with websocket support
2019-07-20 02:56:40 +00:00
HttpServer::new(move || {
App::new()
.wrap(middleware::Logger::default())
.data(pool.clone())
// The routes
.configure(federation::config)
.configure(feeds::config)
.configure(index::config)
.configure(nodeinfo::config)
.configure(webfinger::config)
.configure(websocket::config)
// static files
.service(actix_files::Files::new(
"/static",
settings.front_end_dir.to_owned(),
))
2020-01-01 22:47:00 +00:00
.service(actix_files::Files::new(
"/docs",
settings.front_end_dir.to_owned() + "/documentation",
))
2019-07-20 02:56:40 +00:00
})
2020-01-11 12:30:45 +00:00
.bind((settings.bind, settings.port))?
.run()
.await
}