Skip to content

Commit 1c58c35

Browse files
v0.5.72: azure connection string, supabase improvement, multitrigger resolution, docs quick reference
2 parents d63a5cb + 80f0047 commit 1c58c35

File tree

60 files changed

+1027
-515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1027
-515
lines changed

.devcontainer/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ services:
4444
deploy:
4545
resources:
4646
limits:
47-
memory: 4G
47+
memory: 1G
4848
environment:
4949
- NODE_ENV=development
5050
- DATABASE_URL=postgresql://postgres:postgres@db:5432/simstudio
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
'use client'
2+
3+
import { getAssetUrl } from '@/lib/utils'
4+
5+
interface ActionImageProps {
6+
src: string
7+
alt: string
8+
}
9+
10+
interface ActionVideoProps {
11+
src: string
12+
alt: string
13+
}
14+
15+
export function ActionImage({ src, alt }: ActionImageProps) {
16+
const resolvedSrc = getAssetUrl(src.startsWith('/') ? src.slice(1) : src)
17+
18+
return (
19+
<img
20+
src={resolvedSrc}
21+
alt={alt}
22+
className='inline-block w-full max-w-[200px] rounded border border-neutral-200 dark:border-neutral-700'
23+
/>
24+
)
25+
}
26+
27+
export function ActionVideo({ src, alt }: ActionVideoProps) {
28+
const resolvedSrc = getAssetUrl(src.startsWith('/') ? src.slice(1) : src)
29+
30+
return (
31+
<video
32+
src={resolvedSrc}
33+
autoPlay
34+
loop
35+
muted
36+
playsInline
37+
className='inline-block w-full max-w-[200px] rounded border border-neutral-200 dark:border-neutral-700'
38+
/>
39+
)
40+
}

apps/docs/content/docs/de/self-hosting/index.mdx

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@ Stellen Sie Sim auf Ihrer eigenen Infrastruktur mit Docker oder Kubernetes berei
1010

1111
## Anforderungen
1212

13-
| Ressource | Minimum | Empfohlen |
14-
|----------|---------|-------------|
15-
| CPU | 2 Kerne | 4+ Kerne |
16-
| RAM | 12 GB | 16+ GB |
17-
| Speicher | 20 GB SSD | 50+ GB SSD |
18-
| Docker | 20.10+ | Neueste Version |
13+
| Ressource | Klein | Standard | Produktion |
14+
|----------|-------|----------|------------|
15+
| CPU | 2 Kerne | 4 Kerne | 8+ Kerne |
16+
| RAM | 12 GB | 16 GB | 32+ GB |
17+
| Speicher | 20 GB SSD | 50 GB SSD | 100+ GB SSD |
18+
| Docker | 20.10+ | 20.10+ | Neueste Version |
19+
20+
**Klein**: Entwicklung, Tests, Einzelnutzer (1-5 Nutzer)
21+
**Standard**: Teams (5-50 Nutzer), moderate Arbeitslasten
22+
**Produktion**: Große Teams (50+ Nutzer), Hochverfügbarkeit, intensive Workflow-Ausführung
23+
24+
<Callout type="info">
25+
Die Ressourcenanforderungen werden durch Workflow-Ausführung (isolated-vm Sandboxing), Dateiverarbeitung (In-Memory-Dokumentenparsing) und Vektoroperationen (pgvector) bestimmt. Arbeitsspeicher ist typischerweise der limitierende Faktor, nicht CPU. Produktionsdaten zeigen, dass die Hauptanwendung durchschnittlich 4-8 GB und bei hoher Last bis zu 12 GB benötigt.
26+
</Callout>
1927

2028
## Schnellstart
2129

0 commit comments

Comments
 (0)