-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
108 lines (88 loc) · 4.78 KB
/
Copy pathfaq.html
File metadata and controls
108 lines (88 loc) · 4.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FAQ — StartOne Docs</title>
<meta name="description" content="Straight answers about StartOne — pricing, licensing, requirements, and what each edition can and cannot do.">
<link rel="icon" type="image/svg+xml" href="img/mark.svg">
<link rel="icon" href="img/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<meta name="theme-color" content="#7069ff">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="hwrap">
<a href="index.html" class="brand">
<img src="img/mark.svg" alt="">
<span>Start<span class="one">One</span><sup class="tm">™</sup><span class="docs"> docs</span></span>
</a>
<div class="hlinks">
<a href="https://startone.ai">Home</a>
<a href="https://github.com/startoneai/startone-community">GitHub</a>
<a href="https://startone.ai#pricing">Pricing</a>
</div>
</div>
</header>
<div class="shell">
<nav class="side">
<h4>Start here</h4>
<a href="index.html" >Overview</a>
<a href="index.html#which">Which edition?</a>
<h4>Community — free</h4>
<a href="community.html" >Quickstart</a>
<a href="community.html#config">Configuration</a>
<a href="community.html#limits">Limits</a>
<h4>Developer — Web</h4>
<a href="developer-web.html" >Quickstart</a>
<a href="developer-web.html#config">Configuration</a>
<a href="developer-web.html#architecture">Architecture</a>
<a href="developer-web.html#deploy">Deploying</a>
<h4>Developer — Message</h4>
<a href="developer-message.html" >Quickstart</a>
<a href="developer-message.html#profile">Markets (US / CN)</a>
<a href="developer-message.html#channels">Channel setup</a>
<a href="developer-message.html#media">Media commands</a>
<a href="developer-message.html#deploy">Deploying</a>
<h4>Business</h4>
<a href="business.html" >Overview</a>
<h4>Reference</h4>
<a href="faq.html" class="active">FAQ</a>
<a href="licensing.html" >Licensing</a>
</nav>
<main>
<h1>FAQ</h1>
<p class="lede">Straight answers.</p>
<h2>Buying</h2>
<h3>Can I try it before I buy?</h3>
<p>Yes, and you should. <a href="community.html">Community</a> is free, open source, and runs in minutes. It is the same architecture — just without auth, a database, the full media studio, or billing. Read the code, run it, then decide.</p>
<h3>Is this a subscription?</h3>
<p>No. Each Developer edition is a one-time purchase and you own the source. You pay your AI providers directly for the API calls you make; StartOne takes nothing per call.</p>
<h3>Why are the two Developer editions sold separately?</h3>
<p>Because most developers build either a web app or a bot, not both. Bundling them would mean charging you for a codebase you never open. If you genuinely need both, buy both.</p>
<h3>Do you offer refunds?</h3>
<p>No — this is downloadable source code, and it cannot be returned once you have it. That is precisely why Community exists: evaluate the architecture for free, at length, before spending anything.</p>
<h2>Technical</h2>
<h3>What do I actually need to run it?</h3>
<p>Node, and an API key from at least one AI provider. Developer — Web also uses Postgres and Redis (a docker-compose file is included) and Clerk for auth. Every edition boots with <em>zero</em> keys configured, so you can explore before setting anything up.</p>
<h3>Which AI providers are supported?</h3>
<p>OpenAI, Anthropic, Google, GLM (z.ai), DeepSeek, and Qwen for chat; fal.ai and Replicate for media. Providers sit behind a single contract, so adding another is a contained change.</p>
<h3>Can I swap out Clerk / Postgres / fal.ai?</h3>
<p>Yes. Each is behind a seam — auth in <code>lib/auth/</code>, media providers in <code>lib/media/providers.ts</code>. That is the point of owning the source.</p>
<h3>Is there really no billing in Developer?</h3>
<p>Correct, and it is deliberate. Developer is unmetered: no credits, no limits, no payment code to rip out. If you want billing, that is <a href="business.html">Business</a>.</p>
<h2>Licensing</h2>
<h3>Can I build commercial products with it?</h3>
<p>Yes — unlimited products of your own, including commercial ones, on unlimited projects you own.</p>
<h3>Can I resell it?</h3>
<p>No. You may not resell or redistribute the StartOne source, modified or not, as a competing boilerplate, template, or starter kit. Build products with it; do not sell it as a product.</p>
<h3>What about the StartOne name?</h3>
<p>The licence covers the code, not the brand. See <a href="licensing.html">Licensing</a>.</p>
<footer>
© 2026 Kredit Technology, LLC. StartOne™ is a trademark of Kredit Technology, LLC.
</footer>
</main>
</div>
</body>
</html>