Skip to content

Commit 5b194fe

Browse files
committed
docs: add deployment guides overview page
- Create new markdown file for deployment guides overview - Add title, description, and import statements for Card and CardGrid components - Implement CardGrid layout with three deployment guide cards - Include links to individual deployment guides for API server, web dashboard, and mobile client
1 parent 618fcad commit 5b194fe

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: 'Deployment Guides: From Local to Live'
3+
description: A collection of guides to help you deploy the API server, mobile app, and web dashboard to production environments.
4+
---
5+
6+
import { Card, CardGrid } from '@astrojs/starlight/components';
7+
8+
Once you have the ecosystem running locally, the next step is to deploy the components to production. These guides provide step-by-step instructions for preparing and deploying each part of the toolkit.
9+
10+
<CardGrid>
11+
<Card title="1. Deploy the API Server" icon="cloud">
12+
Learn how to configure and deploy the Dart Frog backend to a production server using Docker.
13+
<a href="/api-server/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
14+
Go to API Deployment Guide &rarr;
15+
</a>
16+
</Card>
17+
<Card title="2. Deploy the Web Dashboard" icon="laptop">
18+
Follow these steps to build and deploy the Flutter web dashboard to a static hosting provider.
19+
<a href="/web-dashboard/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
20+
Go to Dashboard Deployment Guide &rarr;
21+
</a>
22+
</Card>
23+
<Card title="3. Deploy the Mobile Client" icon="phone">
24+
Prepare and build your Flutter mobile app for release on the Apple App Store and Google Play Store.
25+
<a href="/mobile-client/deployment/" style={{ display: 'block', marginTop: '1rem' }}>
26+
Go to Mobile App Deployment Guide &rarr;
27+
</a>
28+
</Card>
29+
</CardGrid>

0 commit comments

Comments
 (0)