My last commit while I am still 35

This commit is contained in:
Koper
2023-12-07 23:57:02 +07:00
parent e17bc4c708
commit e89db60b58
3 changed files with 11 additions and 6 deletions

View File

@@ -3,14 +3,15 @@ import { isDevelopment } from "./utils";
const localConfig = {
features: {
requireLogin: true,
requireLogin: false,
privacy: true,
browse: true,
sendToZulip: false,
browse: false,
sendToZulip: true,
},
api_url: "http://127.0.0.1:1250",
websocket_url: "ws://127.0.0.1:1250",
auth_callback_url: "http://localhost:3000/auth-callback",
zulip_streams: "https://d3ow1y42gqfmk.cloudfront.net",
};
type EdgeConfig = {
@@ -25,6 +26,7 @@ type EdgeConfig = {
auth_callback_url: string;
websocket_url: string;
api_url: string;
zulip_streams: string;
};
};