Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/ws-manager-bridge/src/index.ts
2498 views
1
/**
2
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
require("reflect-metadata");
8
9
import { Container } from "inversify";
10
import { containerModule } from "./container-module";
11
import { start } from "./main";
12
13
import { dbContainerModule } from "@gitpod/gitpod-db/lib/container-module";
14
15
const container = new Container();
16
container.load(containerModule);
17
container.load(dbContainerModule());
18
19
start(container);
20
21