Copy in org domain from config for now

This commit is contained in:
Owen Schwartz 2024-12-22 12:23:19 -05:00
parent 0386d81b95
commit 39a24c951c
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
2 changed files with 17 additions and 0 deletions

View file

@ -3,9 +3,11 @@ import { createApiServer } from "./apiServer";
import { createNextServer } from "./nextServer";
import { createInternalServer } from "./internalServer";
import { User, UserOrg } from "./db/schema";
import { copyInConfig } from "./setup/copyInConfig";
async function startServers() {
await ensureActions();
await copyInConfig();
// Start all servers
const apiServer = createApiServer();