Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,7 @@ start-collector.sh
.turbo

# VSCode
.vscode
.vscode

## Helm Chart Tests
helm/sim/test
4 changes: 2 additions & 2 deletions apps/sim/components/emails/batch-invitation-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const BatchInvitationEmail = ({
src='https://simstudio.ai/logo.png'
width='120'
height='36'
alt='SimStudio'
alt='Sim Studio'
style={logo}
/>
</Section>
Expand All @@ -82,7 +82,7 @@ export const BatchInvitationEmail = ({

<Text style={text}>
<strong>{inviterName}</strong> has invited you to join{' '}
<strong>{organizationName}</strong> on SimStudio.
<strong>{organizationName}</strong> on Sim Studio.
</Text>

{/* Organization Invitation Details */}
Expand Down
28 changes: 28 additions & 0 deletions helm/sim/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# Examples directory (included in chart but ignored during packaging)
examples/
# Test files
*_test.yaml
test/
23 changes: 23 additions & 0 deletions helm/sim/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: v2
name: sim
description: A Helm chart for Sim - AI agent workflow platform
type: application
version: 0.1.0
appVersion: "1.0.0"
home: https://simstudio.ai
icon: https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/sim.svg
sources:
- https://github.com/simstudioai/sim
maintainers:
- name: Sim Team
email: help@simstudio.ai
url: https://simstudio.ai
keywords:
- ai
- workflow
- automation
- agents
- nextjs
annotations:
category: AI/ML Platform
licenses: Apache-2.0
Loading