Install Dokploy
01-install-dokploy.webm
Official Docs: https://docs.dokploy.com/docs/core/installation
# License: MIT | |
# Store signatures in "Digital Signature" | |
# it uploads signatures on S3 for secure storage. | |
# Code snippet to fetch signature and sign document | |
import io | |
import os | |
import ntpath | |
import boto3 | |
import botocore.exceptions |
Official Docs: https://docs.dokploy.com/docs/core/installation
FROM debian:bookworm-slim | |
COPY entrypoint.sh /entrypoint.sh | |
RUN apt-get update \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ | |
locales \ | |
ca-certificates \ | |
curl \ | |
sudo \ |
// Copyright (c) 2025, Revant Nandgaonkar and contributors | |
// License: MIT | |
// HTML Field has following options | |
// <div id="dropzoneTarget" class="fallback dropzone"> <input hidden name="file" type="file"> </div> | |
frappe.ui.form.on('File Uploader', { | |
refresh(frm) { | |
const url = '/api/method/multipart_upload.upload.multipart_file_upload'; | |
const chunkSize = 20 * 1024 * 1024; // 20MB |