Replies: 1 comment
-
|
Creating and publishing a permanent website from Langflow: Option 1: Embed in existing site <!-- Your website -->
<iframe
src="https://your-langflow.com/flow/abc123/embed"
width="400" height="600"
></iframe>Option 2: Deploy as standalone API # Export flow
langflow export --flow-id abc123 --output my_flow.json
# Deploy to cloud
langflow deploy --flow my_flow.json --platform railwayOption 3: Custom frontend // React/Next.js app
const response = await fetch("https://your-langflow.com/api/v1/run/abc123", {
method: "POST",
body: JSON.stringify({ input: userMessage })
});Hosting options:
For "permanent":
# Railway deploy
railway up
railway domain add myapp.comWe deploy Langflow apps at RevolutionAI. What's your use case — chatbot, API, or full app? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Langflow Teams
Kindly request that you guys could help me on how to create a website and publish it as a permanent website using your Langflow
Beta Was this translation helpful? Give feedback.
All reactions