You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/how-to-guides/productionize.mdx
+43-15Lines changed: 43 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,31 +4,59 @@ description: "Setup infra for production 1fe instance"
4
4
---
5
5
6
6
import { SlRocket } from"react-icons/sl";
7
+
import {
8
+
FaMicrosoft,
9
+
FaCloud,
10
+
FaNpm,
11
+
FaGithub,
12
+
FaDatabase,
13
+
} from"react-icons/fa";
7
14
8
15
Let's get your 1fe instance ready for production! We shall cover the following topics in this guide:
9
16
10
-
<divclassName="prose">
11
-
1.**Setup a hosting service for your 1fe instance.** 2. **Setup a static
12
-
hosting service for your bundles.** 3. **Setup a npm registry.** 4. **Setup a
13
-
configuration service.** 5. **Setup a CI/CD system.**
14
-
</div>
17
+
## Quick Start Checklist
15
18
16
-
## 1. Setup a Hosting Service for Your 1fe Instance
19
+
:::tip[Recommended Setup Order]
20
+
Follow these steps in order for the smoothest setup experience:
17
21
18
-
Coming soon... This section will cover how to deploy your 1fe instance to production hosting services like Vercel, Netlify, AWS, or your preferred cloud provider.
22
+
1.[Setup Hosting Service](/infrastructure/hosting-setup/) - Deploy your 1FE application
## 2. Setup a Static Hosting Service for Your Bundles
29
+
Each step builds on the previous one, ensuring your production infrastructure is robust and scalable.
21
30
22
-
Coming soon... This section will cover how to set up CDN hosting for your widget bundles using services like AWS S3 + CloudFront, Azure Blob Storage, or other CDN providers.
31
+
## <FaMicrosoftstyle={{ display: 'inline', marginRight: '0.5rem', verticalAlign: 'middle', color: '#0078D4' }} /> 1. Setup a Hosting Service for Your 1fe Instance
23
32
24
-
## 3. Setup a NPM Registry
33
+
Your 1fe application shell needs to be hosted on a reliable service that can handle user traffic and serve your application globally.
25
34
26
-
Coming soon... This section will cover how to set up a private NPM registry for your widgets and manage package distribution in a production environment.
## <FaCloudstyle={{ display: 'inline', marginRight: '0.5rem', verticalAlign: 'middle', color: '#1F8BF3' }} /> 2. Setup a Static Hosting Service for Your Bundles
29
38
30
-
Coming soon... This section will cover how to set up a robust configuration management system for your Live Configurations, including environment-specific settings and deployment strategies.
39
+
You can use a CDN service to host your built widget bundles for both integration and production environments.
Coming soon... This section will cover how to implement continuous integration and deployment pipelines for your 1fe widgets and instances, including automated testing, building, and deployment to your CDN and hosting services.
0 commit comments