Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FastAPI, htmx, TailwindCSS Web App with Log Analytics template #163

Merged
merged 2 commits into from
Jul 31, 2023
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 14 additions & 4 deletions website/src/data/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {sortBy} from '../utils/jsUtils';
import {TagType, User, Tags} from './tags';

// *** ADDING DATA TO AZD GALLERY ****/
// Currently using Custom Issues on Repo
// Currently using Custom Issues on Repo
// TODO: Define acceptable process for PR-based contributions

// *************** CARD DATA STARTS HERE ***********************
Expand All @@ -30,7 +30,7 @@ const Users: User[] = [
author: 'Konstantinos Pantos',
source: 'https://github.com/Azure-Samples/apptemplate-wordpress-on-ACA',
tags: ['featured','php','javascript','aca','agw','rediscache','monitor','keyvault', 'bicep'],
},
},
{
title: 'React Web App with C# API and MongoDB',
description:
Expand Down Expand Up @@ -209,7 +209,7 @@ const Users: User[] = [
author:'Azure Content Team',
source: 'https://github.com/Azure-Samples/openai-plugin-fastapi',
tags: ['featured', 'bicep','python','aca','cosmosdb','monitor', 'fastapi', 'ai'],
},
},
{
title: 'ChatGPT + Enterprise Data with Azure OpenAI and Cognitive Search',
description: 'A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.',
Expand Down Expand Up @@ -257,7 +257,7 @@ const Users: User[] = [
source: 'https://github.com/Azure-Samples/contoso-real-estate',
tags: ['bicep', 'javascript', 'swa', 'aca', 'keyvault', 'blobstorage', 'azuredb-postgreSQL', 'cosmosdb', 'apim', 'enterprisepatterns']
},


//------- ALL OTHER AZURE-SAMPLES HERE - how many do we want to feature?

Expand Down Expand Up @@ -612,6 +612,16 @@ const Users: User[] = [
source: 'https://github.com/Gordonby/servicebus-dotnet-functionapp',
tags: ['dotnetCsharp', 'functions', 'bicep', 'servicebus']
},
{
title: 'FastAPI, htmx, TailwindCSS on App Service',
description:
'A sample web app using FastAPI, htmx, and TailwindCSS that demonstrates dynamic design. Does not require a database provision.',
preview: require('./images/fastapi-apps-loganalytics.png'),
website: 'https://github.com/tataraba',
author: 'Mario Munoz',
source: 'https://github.com/tataraba/musicbinder-azd',
tags: ['fastapi','python', 'appservice', 'webapps','loganalytics', 'bicep'],
},
];
// *************** CARD DATA ENDS HERE *******************

Expand Down
Loading