mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-05 05:04:10 -05:00
* feat(releases): tag releases to main with version numbers, speed up docker builds * resize runners
68 lines
675 B
Plaintext
68 lines
675 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
LICENSE
|
|
NOTICE
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# IDE and editor
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
|
|
# Environment and config
|
|
.env*
|
|
!.env.example
|
|
.prettierrc
|
|
.prettierignore
|
|
.eslintrc*
|
|
.eslintignore
|
|
|
|
# CI/CD and DevOps
|
|
.github
|
|
.devcontainer
|
|
.husky
|
|
docker-compose*.yml
|
|
Dockerfile*
|
|
|
|
# Build artifacts and caches
|
|
.next
|
|
.turbo
|
|
.cache
|
|
dist
|
|
build
|
|
out
|
|
coverage
|
|
*.log
|
|
|
|
# Dependencies (will be installed fresh in container)
|
|
node_modules
|
|
.bun
|
|
|
|
# Test files
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.spec.ts
|
|
**/*.spec.tsx
|
|
__tests__
|
|
__mocks__
|
|
jest.config.*
|
|
vitest.config.*
|
|
|
|
# TypeScript build info
|
|
*.tsbuildinfo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
*.tmp
|