feat: docker for production deployment

This commit is contained in:
2025-07-22 11:46:29 +04:00
parent ab29a8692e
commit 6b728f3780
8 changed files with 86 additions and 4 deletions

View File

@ -1,13 +1,13 @@
import { render as testingLibraryRender } from "@testing-library/react";
import { MantineProvider } from "@mantine/core";
import { darkTheme } from "@/theme";
import { theme } from "@/theme";
import React from "react";
export function render(ui: React.ReactNode) {
return testingLibraryRender(<>{ui}</>, {
wrapper: ({ children }: { children: React.ReactNode }) => (
<MantineProvider
theme={darkTheme}
theme={theme}
env="test">
{children}
</MantineProvider>