import { join, resolve } from "node:path";
import { Env } from "../../env";
export const ORGS_REPOS: Record<
string,
Record<
string,
{ username: string; password: string; gitRepositoryDir: string }
>
> = {
wnemencha: {
"react-monolith-samples": {
username: "wnemencha",
password: "secret",
gitRepositoryDir: resolve(
join(Env.GIT_REPOSITORIES_ROOT, "wnemencha", "react-monolith-samples")
),
},
},
};