Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 1 addition & 28 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,34 +23,7 @@ export default defineConfig({
{ label: 'Local Setup', link: '/getting-started/local-setup' },
{ label: 'Deployment', link: '/getting-started/deployment' },
],
},
{
label: 'API Server',
collapsed: true,
items: [
{ label: 'Introduction', link: '/api-server/' },
{ label: 'Local Setup', link: '/api-server/local-setup' },
{ label: 'Deployment', link: '/api-server/deployment' },
],
},
{
label: 'Web Dashboard',
collapsed: true,
items: [
{ label: 'Introduction', link: '/web-dashboard/' },
{ label: 'Local Setup', link: '/web-dashboard/local-setup' },
{ label: 'Deployment', link: '/web-dashboard/deployment' },
],
},
{
label: 'Mobile Client',
collapsed: true,
items: [
{ label: 'Introduction', link: '/mobile-client/' },
{ label: 'Local Setup', link: '/mobile-client/local-setup' },
{ label: 'Deployment', link: '/mobile-client/deployment' },
],
},
},
],
}),
],
Expand Down
6 changes: 0 additions & 6 deletions src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,6 @@ Welcome to the Flutter News App Full Source Code Toolkit. This is more than just
</Card>
</div>

## How the Toolkit Fits Together

The **API Server** is the central brain. Both the **Mobile Client** and the **Web Dashboard** communicate with it to fetch data, authenticate users, and retrieve configuration. The **Web Dashboard** is used to populate the content that the **Mobile Client** displays.

This separation of concerns makes the toolkit robust and flexible. You can manage your entire platform from the web and deliver updates to your mobile users instantly.

## Get Started: Try, Evaluate, and Launch

This toolkit is source-available, allowing you to explore the code and ensure it meets your standards before making a commitment.
Expand Down