move config

This commit is contained in:
Sara
2023-12-01 17:06:06 +01:00
parent bcbd990958
commit 84d06348e5
3 changed files with 15 additions and 13 deletions

2
www/.gitignore vendored
View File

@@ -39,3 +39,5 @@ next-env.d.ts
# Sentry Auth Token
.sentryclirc
config.ts

View File

@@ -1,18 +1,6 @@
import { get } from "@vercel/edge-config";
import { isDevelopment } from "./utils";
const localConfig = {
features: {
requireLogin: false,
privacy: true,
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",
};
import { localConfig } from "../../config";
type EdgeConfig = {
[domainWithDash: string]: {

12
www/config-template.ts Normal file
View File

@@ -0,0 +1,12 @@
export const localConfig = {
features: {
requireLogin: true,
privacy: true,
browse: true,
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: "", // Find the value on zulip
};