mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-05 06:21:54 +00:00
Config: Be able to configure the target_url
This commit is contained in:
Generated
BIN
Binary file not shown.
@@ -1,9 +1,12 @@
|
||||
import { Router } from "express";
|
||||
import Config from "../util/Config"
|
||||
|
||||
const router = Router();
|
||||
|
||||
const url = Config.get().server.root_url;
|
||||
|
||||
router.get("/", (req, res) => {
|
||||
res.send({ url: "ws://localhost:3002" });
|
||||
res.send({ url: `ws://${url}:3002` });
|
||||
});
|
||||
|
||||
export default router;
|
||||
|
||||
@@ -21,6 +21,9 @@ export interface RateLimitOptions {
|
||||
}
|
||||
|
||||
export interface DefaultOptions {
|
||||
server: {
|
||||
root_url: string;
|
||||
};
|
||||
general: {
|
||||
instance_id: string;
|
||||
};
|
||||
@@ -108,6 +111,9 @@ export interface DefaultOptions {
|
||||
}
|
||||
|
||||
export const DefaultOptions: DefaultOptions = {
|
||||
server: {
|
||||
root_url: "localhost" // we are localhost unless the oposite is specified
|
||||
},
|
||||
general: {
|
||||
instance_id: Snowflake.generate(),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user