icons readme gitignore
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -35,3 +35,4 @@ yarn-error.log*
|
|||||||
*.tsbuildinfo
|
*.tsbuildinfo
|
||||||
next-env.d.ts
|
next-env.d.ts
|
||||||
.env
|
.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.
|
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
|
## todos
|
||||||
|
|
||||||
- Sendgrid setup and nodemailer-sendgrid SMTP hint
|
- Sendgrid setup and nodemailer-sendgrid SMTP hint
|
||||||
- Render Deploy YAML file or similar
|
- 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"
|
aria-hidden="true"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
strokeLinecap="round"
|
stroke-linecap="round"
|
||||||
strokeLinejoin="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.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"
|
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>
|
</svg>
|
||||||
|
|
||||||
<span className="mt-2 block text-sm font-medium text-neon">
|
<span className="mt-2 block text-sm font-medium text-neon">
|
||||||
Upload a new PDF document
|
Upload a new PDF document
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import type { NextPageWithLayout } from "./_app";
|
|||||||
import Head from "next/head";
|
import Head from "next/head";
|
||||||
import {
|
import {
|
||||||
CheckBadgeIcon,
|
CheckBadgeIcon,
|
||||||
|
DocumentPlusIcon,
|
||||||
EnvelopeIcon,
|
EnvelopeIcon,
|
||||||
EyeIcon,
|
EyeIcon,
|
||||||
PlusIcon,
|
PlusIcon,
|
||||||
@@ -56,6 +57,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
<div className="mt-4 sm:mt-0 sm:ml-16 sm:flex-none">
|
||||||
<Button
|
<Button
|
||||||
|
icon={DocumentPlusIcon}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
document?.getElementById("fileUploadHelper")?.click();
|
document?.getElementById("fileUploadHelper")?.click();
|
||||||
}}
|
}}
|
||||||
|
|||||||
Reference in New Issue
Block a user