Skip to content

Commit cb17691

Browse files
waleedlatif1waleedlatif
andauthored
feat(helm): added helm charts for self-hosting (#813)
* feat(helm): added helm charts for self-hosting * ack PR comments, use sim instead of simstudio --------- Co-authored-by: waleedlatif <waleedlatif@waleedlatifs-MacBook-Pro.local>
1 parent c00b185 commit cb17691

29 files changed

+4775
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,7 @@ start-collector.sh
6565
.turbo
6666

6767
# VSCode
68-
.vscode
68+
.vscode
69+
70+
## Helm Chart Tests
71+
helm/sim/test

apps/sim/components/emails/batch-invitation-email.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const BatchInvitationEmail = ({
7373
src='https://simstudio.ai/logo.png'
7474
width='120'
7575
height='36'
76-
alt='SimStudio'
76+
alt='Sim Studio'
7777
style={logo}
7878
/>
7979
</Section>
@@ -82,7 +82,7 @@ export const BatchInvitationEmail = ({
8282

8383
<Text style={text}>
8484
<strong>{inviterName}</strong> has invited you to join{' '}
85-
<strong>{organizationName}</strong> on SimStudio.
85+
<strong>{organizationName}</strong> on Sim Studio.
8686
</Text>
8787

8888
{/* Organization Invitation Details */}

helm/sim/.helmignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
24+
# Examples directory (included in chart but ignored during packaging)
25+
examples/
26+
# Test files
27+
*_test.yaml
28+
test/

helm/sim/Chart.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: v2
2+
name: sim
3+
description: A Helm chart for Sim - AI agent workflow platform
4+
type: application
5+
version: 0.1.0
6+
appVersion: "1.0.0"
7+
home: https://simstudio.ai
8+
icon: https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/sim.svg
9+
sources:
10+
- https://github.com/simstudioai/sim
11+
maintainers:
12+
- name: Sim Team
13+
email: help@simstudio.ai
14+
url: https://simstudio.ai
15+
keywords:
16+
- ai
17+
- workflow
18+
- automation
19+
- agents
20+
- nextjs
21+
annotations:
22+
category: AI/ML Platform
23+
licenses: Apache-2.0

0 commit comments

Comments
 (0)