Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5cbffb1
feat: Complete FluentSample template with dark mode and enhanced navi…
marcelbf Jul 17, 2025
f01d51b
feat: Complete mock data UI implementation
marcelbf Jul 17, 2025
ae27a75
feat: Update browser tab title and favicon
marcelbf Jul 17, 2025
bab5162
fix: Use actual Power Apps SVG logo in navigation
marcelbf Jul 17, 2025
505bedd
Enhance FluentSample UI: Improve header layout, navigation, and searc…
marcelbf Jul 18, 2025
1c76c7a
Update HomePage: Change section title to 'Examples' and improve subtitle
marcelbf Jul 18, 2025
e2465a7
Fix all linting and TypeScript errors: React Fast Refresh compliance …
marcelbf Jul 18, 2025
0ea1ae2
feat: FluentSample - Complete Office 365 template with static mock data
marcelbf Jul 18, 2025
9889293
Fix dark mode theming issues
marcelbf Jul 18, 2025
4888d06
Fix React Hook eslint warning
marcelbf Jul 18, 2025
742f0b7
Update TypeScript configuration to use verbatimModuleSyntax: false
marcelbf Jul 18, 2025
504ad7f
Implement code splitting and improve bundle optimization
marcelbf Jul 18, 2025
b1d11c2
Enhance user guidance with documentation links
marcelbf Jul 18, 2025
48fbc4c
Add sample data generator scripts for Projects table
marcelbf Jul 18, 2025
7eb072f
feat: simplify SQL page with project sample data
marcelbf Jul 18, 2025
064c24c
perf: optimize SqlPage with useMemo for projects array
marcelbf Jul 18, 2025
c4ccdb9
Transform FluentSample to SQL Database Connector Template
marcelbf Jul 18, 2025
b0b4c55
Convert Custom API page to template with static mock data
marcelbf Jul 19, 2025
acd910c
refactor: remove unused Asset Management API and Projects service files
marcelbf Jul 19, 2025
ed39362
fix: update power-code-sdk dependency URL to the latest release
marcelbf Jul 19, 2025
623b448
refactor: remove copilot instructions markdown file from FluentSample
marcelbf Jul 19, 2025
dc4c270
chore: update package.json and package-lock.json for dependency manag…
marcelbf Jul 19, 2025
3442006
docs: enhance README with new samples and structure; add clone demo GIF
marcelbf Jul 22, 2025
7920c57
docs: add GIF for initializing and running the app locally in README
marcelbf Jul 22, 2025
7c8c029
Remove backup instructions for GitHub Copilot and add comprehensive r…
marcelbf Jul 22, 2025
df26b2e
docs: add GIFs for GitHub Copilot integration with Office 365 and pre…
marcelbf Jul 22, 2025
701abc6
docs: update GIF for GitHub Copilot Office 365 integration in README
marcelbf Jul 22, 2025
46e4e7f
docs: add important connection instructions for Office 365 and SQL Da…
marcelbf Jul 22, 2025
b57656f
docs: add AI-generated code notice to README for clarity on usage and…
marcelbf Jul 22, 2025
64a7232
docs: update copilot instructions and requirements for Power Apps Cod…
marcelbf Jul 23, 2025
493dc09
docs: update clone repository GIF for improved clarity in examples
marcelbf Jul 23, 2025
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
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,24 @@
>
> - [How to create a First Release Environment](#create-a-first-release-power-platform-environment) - Get an environment ready to run Code Apps!
> - [Start in minutes with a Hello World sample code](samples/HelloWorld/README.md) - A ready to run React sample, with minimum setps to run on Power Apps.
> - ✨ [Static Sample / Template](samples/FluentSample/README.md) - The most complete sample. A static App with navigation, build with GitHub Copilot using Fluent UI. Samples includes prompt samples and guide to connect with real data. Includes:
> - Office 365
> - SQL using data pagination
> - Custom Connector
>
> 📂 **Samples**
>
> - [Hello World](samples/HelloWorld/) - Basic React sample to get started quickly
> - [Static Asset Tracker](samples/StaticAssetTracker/) - Asset management with static data.
> - [Fluent Sample](samples/FluentSample/) - A static App with navigation, build with GitHub Copilot using Fluent UI.
>
> 📚 **How to**
>
> - [How to create an app from Scratch](docs/how-to-create-from-scratch.md) - A detailed walkthrough to turn a blank app created with vite into Power Apps code app.
> - [How to connect to data](docs/how-to-connect-to-data.md) - Code apps enable connecting to Power Platform connectors. To do this, you will create connections, add them to the app, and update the app to call them.
> - [How to connect to Azure SQL](docs/how-to-connect-to-azure-sql.md) Find a detailed walkthrough for connecting your code app to Azure SQL.
> - [How to analyze data requests/response](docs/how-to-analyze-data-request-response.md) - Guide to troubleshoot and debug.
> - [How to connect to Azure SQL](docs/how-to-connect-to-azure-sql.md) - Find a detailed walkthrough for connecting your code app to Azure SQL.
> - [How to analyze data requests/response](docs/how-to-analyze-data-request-response.md) - Troubleshoot API calls
> - [How to create sample api and a custom connector](docs/how-to-create-api-and-custom-connector.md) - Quickly create a mock api and a custom connector to test Code Apps with Custom Connectors.
> - ✨ [Sample - Static Asset Tracker](samples/StaticAssetTracker/) - A sample app with static data, ideal for learning how to add data sources and integrate with Power Platform connectors.
>

Power Apps empowers developers of all skillsets—including those building web apps in IDEs like Visual Studio Code—to efficiently build and run business apps on a managed platform.

Expand Down
6 changes: 6 additions & 0 deletions samples/FluentSample/.cursor/rules/powersdkcli.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
description:
globs:
alwaysApply: true
---
Always read the .github/copilot-instructions.md for the context.
6 changes: 6 additions & 0 deletions samples/FluentSample/.cursor/rules/powersdkcli_backup.mdc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
description:
globs:
alwaysApply: true
---
Always read the .github/copilot-instructions.md for the context.
Loading