### Run Share Note Backend with Docker Compose Source: https://github.com/note-sx/server/blob/main/README.md Instructions to deploy the Share Note backend server using Docker Compose, including steps to copy necessary configuration files and start the services in detached mode. ```Shell docker-compose up -d ``` -------------------------------- ### Share Note Backend Server Environment Variables Source: https://github.com/note-sx/server/blob/main/README.md Documentation for environment variables used to configure the Share Note backend server, detailing their purpose, example values, and optionality. ```APIDOC Environment Variables: BASE_WEB_URL: Example: https://example.com Description: The base public URL for your server. HASH_SALT: Example: Any random string Description: MAXIMUM_UPLOAD_SIZE_MB: Example: 5 Description: The maximum allowed size for user uploads in megabytes (MB). FOLDER_PREFIX: Example: 0 Description: OPTIONAL. Set this to `1` or `2` if you want user files to be split into subfolders based on the first *N* characters of the filename. CLOUDFLARE_TURNSTILE_KEY: Example: Description: OPTIONAL. If you want to use Turnstile to show a captcha when someone creates an account. CLOUDFLARE_TURNSTILE_SECRET: Example: Description: OPTIONAL. If you want to use Turnstile to show a captcha when someone creates an account. CLOUDFLARE_ZONE_ID: Example: Description: OPTIONAL. If you want to use Cloudflare proxy in front of your server. CLOUDFLARE_API_KEY: Example: Description: OPTIONAL. If you want to use Cloudflare proxy in front of your server. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.