├── .env.template ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── CODEOWNERS ├── LICENSE ├── README.md ├── app ├── actions │ ├── publish.ts │ └── validate-email.ts ├── api │ ├── chat │ │ └── route.ts │ ├── morph-chat │ │ └── route.ts │ └── sandbox │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── providers.tsx ├── components.json ├── components ├── auth-dialog.tsx ├── auth.tsx ├── chat-input.tsx ├── chat-picker.tsx ├── chat-settings.tsx ├── chat.tsx ├── code-theme.css ├── code-view.tsx ├── deploy-dialog.tsx ├── fragment-code.tsx ├── fragment-interpreter.tsx ├── fragment-preview.tsx ├── fragment-web.tsx ├── icons.tsx ├── logo.tsx ├── navbar.tsx ├── preview.tsx ├── repo-banner.tsx └── ui │ ├── alert.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── card.tsx │ ├── copy-button.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── input.tsx │ ├── label.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── skeleton.tsx │ ├── switch.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── theme-toggle.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── lib ├── api-errors.ts ├── auth.ts ├── duration.ts ├── messages.ts ├── models.json ├── models.ts ├── morph.ts ├── prompt.ts ├── ratelimit.ts ├── schema.ts ├── supabase.ts ├── templates.ts ├── types.ts └── utils.ts ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public └── thirdparty │ ├── logos │ ├── anthropic.svg │ ├── deepseek.svg │ ├── fireworks.svg │ ├── fireworksai.svg │ ├── google.svg │ ├── groq.svg │ ├── mistral.svg │ ├── ollama.svg │ ├── openai.svg │ ├── togetherai.svg │ ├── vertex.svg │ └── xai.svg │ └── templates │ ├── code-interpreter-v1.svg │ ├── gradio-developer.svg │ ├── nextjs-developer.svg │ ├── streamlit-developer.svg │ └── vue-developer.svg ├── readme-assets ├── fragments-dark.png └── fragments-light.png ├── sandbox-templates ├── gradio-developer │ ├── app.py │ ├── build.dev.ts │ ├── build.prod.ts │ ├── package-lock.json │ ├── package.json │ └── template.ts ├── nextjs-developer │ ├── build.dev.ts │ ├── build.prod.ts │ ├── package-lock.json │ ├── package.json │ └── template.ts ├── streamlit-developer │ ├── app.py │ ├── build.dev.ts │ ├── build.prod.ts │ ├── package-lock.json │ ├── package.json │ └── template.ts └── vue-developer │ ├── build.dev.ts │ ├── build.prod.ts │ ├── nuxt.config.ts │ ├── package-lock.json │ ├── package.json │ └── template.ts ├── tailwind.config.ts └── tsconfig.json /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/.env.template -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/actions/publish.ts -------------------------------------------------------------------------------- /app/actions/validate-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/actions/validate-email.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/morph-chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/api/morph-chat/route.ts -------------------------------------------------------------------------------- /app/api/sandbox/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/api/sandbox/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components.json -------------------------------------------------------------------------------- /components/auth-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/auth-dialog.tsx -------------------------------------------------------------------------------- /components/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/auth.tsx -------------------------------------------------------------------------------- /components/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/chat-input.tsx -------------------------------------------------------------------------------- /components/chat-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/chat-picker.tsx -------------------------------------------------------------------------------- /components/chat-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/chat-settings.tsx -------------------------------------------------------------------------------- /components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/chat.tsx -------------------------------------------------------------------------------- /components/code-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/code-theme.css -------------------------------------------------------------------------------- /components/code-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/code-view.tsx -------------------------------------------------------------------------------- /components/deploy-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/deploy-dialog.tsx -------------------------------------------------------------------------------- /components/fragment-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/fragment-code.tsx -------------------------------------------------------------------------------- /components/fragment-interpreter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/fragment-interpreter.tsx -------------------------------------------------------------------------------- /components/fragment-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/fragment-preview.tsx -------------------------------------------------------------------------------- /components/fragment-web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/fragment-web.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/logo.tsx -------------------------------------------------------------------------------- /components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/navbar.tsx -------------------------------------------------------------------------------- /components/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/preview.tsx -------------------------------------------------------------------------------- /components/repo-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/repo-banner.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/copy-button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /lib/api-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/api-errors.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/duration.ts -------------------------------------------------------------------------------- /lib/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/messages.ts -------------------------------------------------------------------------------- /lib/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/models.json -------------------------------------------------------------------------------- /lib/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/models.ts -------------------------------------------------------------------------------- /lib/morph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/morph.ts -------------------------------------------------------------------------------- /lib/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/prompt.ts -------------------------------------------------------------------------------- /lib/ratelimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/ratelimit.ts -------------------------------------------------------------------------------- /lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/schema.ts -------------------------------------------------------------------------------- /lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/supabase.ts -------------------------------------------------------------------------------- /lib/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/templates.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/thirdparty/logos/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/anthropic.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/deepseek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/deepseek.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/fireworks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/fireworks.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/fireworksai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/fireworksai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/google.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/groq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/groq.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/mistral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/mistral.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/ollama.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/ollama.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/openai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/togetherai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/togetherai.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/vertex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/vertex.svg -------------------------------------------------------------------------------- /public/thirdparty/logos/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/logos/xai.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/code-interpreter-v1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/templates/code-interpreter-v1.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/gradio-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/templates/gradio-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/nextjs-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/templates/nextjs-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/streamlit-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/templates/streamlit-developer.svg -------------------------------------------------------------------------------- /public/thirdparty/templates/vue-developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/public/thirdparty/templates/vue-developer.svg -------------------------------------------------------------------------------- /readme-assets/fragments-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/readme-assets/fragments-dark.png -------------------------------------------------------------------------------- /readme-assets/fragments-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/readme-assets/fragments-light.png -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/app.py -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/build.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/build.dev.ts -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/build.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/build.prod.ts -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/package-lock.json -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/package.json -------------------------------------------------------------------------------- /sandbox-templates/gradio-developer/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/gradio-developer/template.ts -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/build.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/nextjs-developer/build.dev.ts -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/build.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/nextjs-developer/build.prod.ts -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/nextjs-developer/package-lock.json -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/nextjs-developer/package.json -------------------------------------------------------------------------------- /sandbox-templates/nextjs-developer/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/nextjs-developer/template.ts -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/app.py -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/build.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/build.dev.ts -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/build.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/build.prod.ts -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/package-lock.json -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/package.json -------------------------------------------------------------------------------- /sandbox-templates/streamlit-developer/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/streamlit-developer/template.ts -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/build.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/build.dev.ts -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/build.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/build.prod.ts -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/nuxt.config.ts -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/package-lock.json -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/package.json -------------------------------------------------------------------------------- /sandbox-templates/vue-developer/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/sandbox-templates/vue-developer/template.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e2b-dev/fragments/HEAD/tsconfig.json --------------------------------------------------------------------------------