mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +10:00
icons readme gitignore
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -35,3 +35,4 @@ yarn-error.log*
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
.env
|
||||
.env.example
|
||||
|
||||
@ -5,6 +5,13 @@
|
||||
Documenso aims to be the world's most trusted document signing tool. This trust is built by empowering you to self-host Documenso and review how it works under the hood. Join us in creating the new internet of trust.
|
||||
|
||||
## todos
|
||||
|
||||
- Sendgrid setup and nodemailer-sendgrid SMTP hint
|
||||
- Render Deploy YAML file or similar
|
||||
-
|
||||
|
||||
# Setup
|
||||
|
||||
`git clone repourl`
|
||||
`npm i in ./`
|
||||
`rename example.env to .env`
|
||||
`set values in .env`
|
||||
@ -119,11 +119,12 @@ const DashboardPage: NextPageWithLayout = (props: any) => {
|
||||
aria-hidden="true"
|
||||
>
|
||||
<path
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
d="M19.5 14.25v-2.625a3.375 3.375 0 00-3.375-3.375h-1.5A1.125 1.125 0 0113.5 7.125v-1.5a3.375 3.375 0 00-3.375-3.375H8.25m3.75 9v6m3-3H9m1.5-12H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 00-9-9z"
|
||||
/>
|
||||
</svg>
|
||||
|
||||
<span className="mt-2 block text-sm font-medium text-neon">
|
||||
Upload a new PDF document
|
||||
</span>
|
||||
|
||||
@ -4,6 +4,7 @@ import type { NextPageWithLayout } from "./_app";
|
||||
import Head from "next/head";
|
||||
import {
|
||||
CheckBadgeIcon,
|
||||
DocumentPlusIcon,
|
||||
EnvelopeIcon,
|
||||
EyeIcon,
|
||||
PlusIcon,
|
||||
@ -56,6 +57,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
|
||||
</div>
|
||||
<div className="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
||||
<Button
|
||||
icon={DocumentPlusIcon}
|
||||
onClick={() => {
|
||||
document?.getElementById("fileUploadHelper")?.click();
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user