ThreadCount Community edition

Uniform stock management for healthcare linen rooms: the coordinator app, the phone counter and the staff app, for your own server. Built from e2d6d42 on 2026-09-13. Licensed under the Functional Source License (FSL-1.1-ALv2).
This commit is contained in:
ThreadCount
2026-09-13 11:16:36 +10:00
commit 057da00fd2
406 changed files with 47822 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
/* Where the product's own screens send people for the terms and the privacy notice.
*
* On threadcount.tech these are the hosted service's pages. A Community instance is somebody
* else's service with somebody else's privacy officer, so the operator sets NEXT_PUBLIC_TERMS_URL
* and NEXT_PUBLIC_PRIVACY_URL to their own documents; until they do, the links point here, which
* is at least honest about where the software came from. Compiled in at build time. */
export const TERMS_URL = process.env.NEXT_PUBLIC_TERMS_URL || "https://threadcount.tech/terms";
export const PRIVACY_URL = process.env.NEXT_PUBLIC_PRIVACY_URL || "https://threadcount.tech/privacy";