initial commit
This commit is contained in:
commit
0f94d1300e
18 changed files with 947 additions and 0 deletions
146
config/services.ts
Normal file
146
config/services.ts
Normal file
|
@ -0,0 +1,146 @@
|
|||
import { SiForgejo, SiJellyfin, SiOllama } from "react-icons/si"
|
||||
import { TbBrowser, TbBubbleText, TbDeviceTv, TbGitBranch, TbKey, TbLink, TbLock, TbMail, TbServer, TbUser } from "react-icons/tb"
|
||||
|
||||
export interface Service {
|
||||
name: string;
|
||||
description: string;
|
||||
icon: React.ElementType;
|
||||
priceStatus: "open" | "invite-only" | "by-request"; /*
|
||||
open -> open, public registration
|
||||
invite-only -> manual registration/invites
|
||||
by-request -> must be requested by user */
|
||||
adminView: Record<string, {
|
||||
icon: React.ElementType;
|
||||
description: string;
|
||||
}>;
|
||||
}
|
||||
|
||||
export const services = [
|
||||
{
|
||||
name: "git",
|
||||
description: "Easy-to-use git server w/ Actions support. Powered by Forgejo.",
|
||||
icon: SiForgejo,
|
||||
priceStatus: "open",
|
||||
joinLink: "https://git.p0ntus.com",
|
||||
adminView: {
|
||||
"Your private repositories": {
|
||||
icon: TbGitBranch,
|
||||
description: "Your private repositories are visible to admins.",
|
||||
},
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
"Change your password": {
|
||||
icon: TbLock,
|
||||
description: "Your password can be changed by an admin. It is not visible.",
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "tv",
|
||||
description: "Private screening movies and tv shows. Powered by Jellyfin.",
|
||||
icon: SiJellyfin,
|
||||
priceStatus: "invite-only",
|
||||
adminView: {
|
||||
"Your devices": {
|
||||
icon: TbDeviceTv,
|
||||
description: "Your devices and their IP addresses.",
|
||||
},
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
"The content you watch": {
|
||||
icon: TbUser,
|
||||
description: "The content you watch is visible to admins.",
|
||||
},
|
||||
"Change settings and preferences": {
|
||||
icon: TbKey,
|
||||
description: "Admins can change settings and preferences.",
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "ai",
|
||||
description: "Invite-only Open WebUI instance w/ Ollama and popular models.",
|
||||
icon: SiOllama,
|
||||
priceStatus: "invite-only",
|
||||
adminView: {
|
||||
"Your chats": {
|
||||
icon: TbBubbleText,
|
||||
description: "Your chats are visible to admins.",
|
||||
},
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "keybox",
|
||||
description: "Need integrity? We do our best to provide you STRONG",
|
||||
icon: TbKey,
|
||||
priceStatus: "open",
|
||||
joinLink: "/keybox",
|
||||
adminView: {
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
"Your sessions": {
|
||||
icon: TbBrowser,
|
||||
description: "Your sessions are visible to admins.",
|
||||
},
|
||||
"Your connections": {
|
||||
icon: TbLink,
|
||||
description: "If you authenticate with SSO, your connections are visible to admins.",
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "mail",
|
||||
description: "A private mail server with full data control. Powered by Mailu.",
|
||||
icon: TbMail,
|
||||
priceStatus: "open",
|
||||
joinLink: "https://pontusmail.org",
|
||||
adminView: {
|
||||
"Change user settings": {
|
||||
icon: TbUser,
|
||||
description: "Admins can change and view user settings.",
|
||||
},
|
||||
"Subject lines": {
|
||||
icon: TbMail,
|
||||
description: "Subject lines are visible to admins.",
|
||||
},
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "hosting",
|
||||
description: "By-request server and service hosting.",
|
||||
icon: TbServer,
|
||||
priceStatus: "by-request",
|
||||
adminView: {
|
||||
"Your data": {
|
||||
icon: TbServer,
|
||||
description: "Your instance data is visible to admins.",
|
||||
},
|
||||
"Your email address": {
|
||||
icon: TbMail,
|
||||
description: "Your email address is visible to admins.",
|
||||
},
|
||||
"Your connections": {
|
||||
icon: TbLink,
|
||||
description: "If you authenticate with SSO, your connections are visible to admins.",
|
||||
},
|
||||
"Your sessions": {
|
||||
icon: TbBrowser,
|
||||
description: "Your sessions are visible to admins.",
|
||||
},
|
||||
}
|
||||
},
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue