diff --git a/.env.example b/.env.example index bc052aead..6a81f72e2 100644 --- a/.env.example +++ b/.env.example @@ -75,7 +75,7 @@ NEXT_PRIVATE_SMTP_APIKEY= # OPTIONAL: Defines whether to force the use of TLS. NEXT_PRIVATE_SMTP_SECURE= # REQUIRED: Defines the sender name to use for the from address. -NEXT_PRIVATE_SMTP_FROM_NAME="No Reply @ Documenso" +NEXT_PRIVATE_SMTP_FROM_NAME="Documenso" # REQUIRED: Defines the email address to use as the from address. NEXT_PRIVATE_SMTP_FROM_ADDRESS="noreply@documenso.com" # OPTIONAL: The API key to use for Resend.com diff --git a/.gitpod.yml b/.gitpod.yml index b03003160..de6c917f1 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -6,7 +6,7 @@ tasks: set -a; source .env && export NEXTAUTH_URL="$(gp url 3000)" && export NEXT_PUBLIC_WEBAPP_URL="$(gp url 3000)" && - export NEXT_PUBLIC_MARKETING_URL="$(gp url 3001)" + export NEXT_PUBLIC_MARKETING_URL="$(gp url 3001)" command: npm run d ports: @@ -25,20 +25,10 @@ ports: - port: 2500 visibility: private onOpen: ignore - - port: 54320 - visibility: private + - port: 54320 + visibility: private onOpen: ignore - -github: - prebuilds: - master: true - pullRequests: true - pullRequestsFromForks: true - addCheck: true - addComment: true - addBadge: true - vscode: extensions: - aaron-bond.better-comments @@ -47,9 +37,5 @@ vscode: - esbenp.prettier-vscode - mikestead.dotenv - unifiedjs.vscode-mdx - - GitHub.copilot-chat - - GitHub.copilot-labs - - GitHub.copilot - GitHub.vscode-pull-request-github - Prisma.prisma - - VisualStudioExptTeam.vscodeintellicode diff --git a/apps/web/src/app/(dashboard)/documents/data-table.tsx b/apps/web/src/app/(dashboard)/documents/data-table.tsx index fa02a1ae2..c079e0165 100644 --- a/apps/web/src/app/(dashboard)/documents/data-table.tsx +++ b/apps/web/src/app/(dashboard)/documents/data-table.tsx @@ -3,6 +3,7 @@ import { useTransition } from 'react'; import { Loader } from 'lucide-react'; +import { DateTime } from 'luxon'; import { useSession } from 'next-auth/react'; import { useUpdateSearchParams } from '@documenso/lib/client-only/hooks/use-update-search-params'; @@ -62,7 +63,12 @@ export const DocumentsDataTable = ({ { header: 'Created', accessorKey: 'createdAt', - cell: ({ row }) => , + cell: ({ row }) => ( + + ), }, { header: 'Title', diff --git a/docker/README.md b/docker/README.md index 2b0ce9953..acdd57d15 100644 --- a/docker/README.md +++ b/docker/README.md @@ -41,7 +41,7 @@ volumes: 1. Run the following command to start the containers: ``` -docker-compose --env-file ./.env -d up +docker-compose --env-file ./.env up -d ``` This will start the PostgreSQL database and the Documenso application containers. diff --git a/docker/production/compose.yml b/docker/production/compose.yml index bcbd9b857..36682ee42 100644 --- a/docker/production/compose.yml +++ b/docker/production/compose.yml @@ -58,7 +58,7 @@ services: - NEXT_PUBLIC_DOCUMENT_SIZE_UPLOAD_LIMIT=${NEXT_PUBLIC_DOCUMENT_SIZE_UPLOAD_LIMIT} - NEXT_PUBLIC_POSTHOG_KEY=${NEXT_PUBLIC_POSTHOG_KEY} - NEXT_PUBLIC_DISABLE_SIGNUP=${NEXT_PUBLIC_DISABLE_SIGNUP} - - NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH=${NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH?:-/opt/documenso/cert.p12} + - NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH=${NEXT_PRIVATE_SIGNING_LOCAL_FILE_PATH:-/opt/documenso/cert.p12} ports: - ${PORT:-3000}:${PORT:-3000} volumes: