DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 3d7daf33a2ad4f0e0bd529f158623a5b3c10b40b deck-builder/server/src/main.rs -rw-r--r-- 994 bytes
3d7daf33Jonni Liljamo fix(client): add TODO about server IP 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * This file is part of laurelin/server
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy_app::{App, CoreStage, ScheduleRunnerPlugin};
use bevy_core::CorePlugin;
use bevy_log::{info, LogPlugin};

use naia_bevy_server::{Plugin as ServerPlugin, ServerConfig, Stage};

use laurelin_shared::server::protocol::protocol;

mod systems;

fn main() {
    let mut server = App::new();

    server
        // plugins
        .add_plugin(CorePlugin::default())
        .add_plugin(ScheduleRunnerPlugin::default())
        .add_plugin(LogPlugin {
            // NOTE: overridden by RUST_LOG environment variable
            level: bevy_log::Level::INFO,
            ..Default::default()
        })
        .add_plugin(ServerPlugin::new(ServerConfig::default(), protocol()))
        // init system
        .add_startup_system(systems::init::init);

    info!("Laurelin server starting");
    server.run();
}