DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 77d69bb2897192b87480515379d699ad87b852cc deck-builder/server/src/systems/init.rs -rw-r--r-- 723 bytes
77d69bb2Jonni Liljamo feat(server): recieve tick buffer messages 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
/*
 * 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_ecs::system::Commands;
use bevy_log::info;

use naia_bevy_server::{Server, ServerAddrs};

pub(crate) fn init(mut commands: Commands, mut server: Server) {
    info!("Laurelin server listening");

    let server_addrs = ServerAddrs::new(
        "0.0.0.0:14191"
            .parse()
            .expect("could not parse Signaling address/port"),
        "0.0.0.0:14192"
            .parse()
            .expect("could not parse WebRTC data address/port"),
        "http://127.0.0.1:14192",
    );

    server.listen(&server_addrs);
}