mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
styles: lint
This commit is contained in:
@@ -1,17 +1,17 @@
|
|||||||
import {
|
import {
|
||||||
createDefaultMiddlewares,
|
createDefaultMiddlewares,
|
||||||
createDefaultTraefikConfig,
|
|
||||||
createDefaultServerTraefikConfig,
|
createDefaultServerTraefikConfig,
|
||||||
|
createDefaultTraefikConfig,
|
||||||
initializeTraefik,
|
initializeTraefik,
|
||||||
} from "@dokploy/server/dist/setup/traefik-setup";
|
} from "@dokploy/server/dist/setup/traefik-setup";
|
||||||
|
|
||||||
|
import { setupDirectories } from "@dokploy/server/dist/setup/config-paths";
|
||||||
|
import { initializePostgres } from "@dokploy/server/dist/setup/postgres-setup";
|
||||||
|
import { initializeRedis } from "@dokploy/server/dist/setup/redis-setup";
|
||||||
import {
|
import {
|
||||||
initializeNetwork,
|
initializeNetwork,
|
||||||
initializeSwarm,
|
initializeSwarm,
|
||||||
} from "@dokploy/server/dist/setup/setup";
|
} from "@dokploy/server/dist/setup/setup";
|
||||||
import { setupDirectories } from "@dokploy/server/dist/setup/config-paths";
|
|
||||||
import { initializePostgres } from "@dokploy/server/dist/setup/postgres-setup";
|
|
||||||
import { initializeRedis } from "@dokploy/server/dist/setup/redis-setup";
|
|
||||||
(async () => {
|
(async () => {
|
||||||
try {
|
try {
|
||||||
setupDirectories();
|
setupDirectories();
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ import GoogleAnalytics from "@/components/analitycs/google";
|
|||||||
import { NextIntlClientProvider } from "next-intl";
|
import { NextIntlClientProvider } from "next-intl";
|
||||||
import { getMessages } from "next-intl/server";
|
import { getMessages } from "next-intl/server";
|
||||||
|
|
||||||
import type { Metadata } from "next";
|
|
||||||
import { Header } from "@/components/Header";
|
|
||||||
import { Footer } from "@/components/Footer";
|
import { Footer } from "@/components/Footer";
|
||||||
|
import { Header } from "@/components/Header";
|
||||||
|
import type { Metadata } from "next";
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: {
|
title: {
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
"use client";
|
"use client";
|
||||||
import clsx from "clsx";
|
import clsx from "clsx";
|
||||||
|
|
||||||
import { Container } from "./Container";
|
|
||||||
import { Button } from "./ui/button";
|
|
||||||
import { trackGAEvent } from "./analitycs";
|
|
||||||
import { Switch } from "./ui/switch";
|
|
||||||
import { useState } from "react";
|
|
||||||
import { useRouter } from "next/navigation";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
import { useRouter } from "next/navigation";
|
||||||
|
import { useState } from "react";
|
||||||
|
import { Container } from "./Container";
|
||||||
|
import { trackGAEvent } from "./analitycs";
|
||||||
|
import { Button } from "./ui/button";
|
||||||
|
import { Switch } from "./ui/switch";
|
||||||
|
|
||||||
function SwirlyDoodle(props: React.ComponentPropsWithoutRef<"svg">) {
|
function SwirlyDoodle(props: React.ComponentPropsWithoutRef<"svg">) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,29 +1,29 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import * as React from "react"
|
import * as SwitchPrimitives from "@radix-ui/react-switch";
|
||||||
import * as SwitchPrimitives from "@radix-ui/react-switch"
|
import * as React from "react";
|
||||||
|
|
||||||
import { cn } from "@/lib/utils"
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
const Switch = React.forwardRef<
|
const Switch = React.forwardRef<
|
||||||
React.ElementRef<typeof SwitchPrimitives.Root>,
|
React.ElementRef<typeof SwitchPrimitives.Root>,
|
||||||
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
|
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>
|
||||||
>(({ className, ...props }, ref) => (
|
>(({ className, ...props }, ref) => (
|
||||||
<SwitchPrimitives.Root
|
<SwitchPrimitives.Root
|
||||||
className={cn(
|
className={cn(
|
||||||
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
|
"peer inline-flex h-6 w-11 shrink-0 cursor-pointer items-center rounded-full border-2 border-transparent transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=unchecked]:bg-input",
|
||||||
className
|
className,
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
>
|
>
|
||||||
<SwitchPrimitives.Thumb
|
<SwitchPrimitives.Thumb
|
||||||
className={cn(
|
className={cn(
|
||||||
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0"
|
"pointer-events-none block h-5 w-5 rounded-full bg-background shadow-lg ring-0 transition-transform data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0",
|
||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
</SwitchPrimitives.Root>
|
</SwitchPrimitives.Root>
|
||||||
))
|
));
|
||||||
Switch.displayName = SwitchPrimitives.Root.displayName
|
Switch.displayName = SwitchPrimitives.Root.displayName;
|
||||||
|
|
||||||
export { Switch }
|
export { Switch };
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { IS_CLOUD, paths } from "@/server/constants";
|
import { IS_CLOUD, paths } from "@/server/constants";
|
||||||
import { updateAdmin } from "@/server/services/admin";
|
import { updateAdmin } from "@/server/services/admin";
|
||||||
import { type RotatingFileStream, createStream } from "rotating-file-stream";
|
import { type RotatingFileStream, createStream } from "rotating-file-stream";
|
||||||
import { execAsync } from "../process/execAsync";
|
|
||||||
import { db } from "../../db";
|
import { db } from "../../db";
|
||||||
|
import { execAsync } from "../process/execAsync";
|
||||||
|
|
||||||
class LogRotationManager {
|
class LogRotationManager {
|
||||||
private static instance: LogRotationManager;
|
private static instance: LogRotationManager;
|
||||||
|
|||||||
Reference in New Issue
Block a user