Skip to content

Commit

Permalink
Merge pull request #632 from wjohnsto/master
Browse files Browse the repository at this point in the history
triggers and functions tutorial added
  • Loading branch information
PrasanKumar93 committed Jan 25, 2024
2 parents 0c8fd20 + 4a2b5fd commit 5974fdd
Show file tree
Hide file tree
Showing 21 changed files with 691 additions and 1 deletion.
25 changes: 24 additions & 1 deletion docs/howtos/solutions/index-solutions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,33 @@ Learn how to easily build, test and deploy code for common microservice and cach
<div class="row">

<div class="col">
<RedisCard
<RedisCard
title="Semantic Text Search"
description="Semantic Text Search Using LangChain (OpenAI) and Redis"
page="/howtos/solutions/vector/semantic-text-search"
/>
</div>

<div class="col">
<RedisCard
title="Semantic Image Based Querying"
description="Semantic Image Based Queries Using LangChain (OpenAI) and Redis"
page="/howtos/solutions/vector/image-summary-search"
/>
</div>

</div>

## Triggers and Functions

<div class="row">

<div class="col">
<RedisCard
title="Triggers and Functions in Redis"
description="Getting Started With Triggers and Functions in Redis"
page="/howtos/solutions/triggers-and-functions/getting-started"
/>
</div>

</div>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The e-commerce microservices application consists of a frontend, built using [Next.js](https://nextjs.org/) with [TailwindCSS](https://tailwindcss.com/). The application backend uses [Node.js](https://nodejs.org). The data is stored in [Redis](https://redis.com/try-free/) and either MongoDB or PostgreSQL, using [Prisma](https://www.prisma.io/docs/reference/database-reference/supported-databases). Below are screenshots showcasing the frontend of the e-commerce app.

**Dashboard:** Displays a list of products with different search functionalities, configurable in the settings page.
![Redis Microservices E-commerce App Frontend - Products Page](images/01-dashboard.png)

**Settings:** Accessible by clicking the gear icon at the top right of the dashboard. Control the search bar, chatbot visibility, and other features here.
![Redis Microservices E-commerce App Frontend - Settings Page](images/08-settings.png)

**Dashboard (Semantic Text Search):** Configured for semantic text search, the search bar enables natural language queries. Example: "pure cotton blue shirts."
![Redis Microservices E-commerce App Frontend - Semantic Text Search](images/01-dashboard-semantic-text.png)

**Shopping Cart:** Add products to the cart and check out using the "Buy Now" button.
![Redis Microservices E-commerce App Frontend - Shopping Cart](images/02-cart.png)

**Order History:** Post-purchase, the 'Orders' link in the top navigation bar shows the order status and history.
![Redis Microservices E-commerce App Frontend - Order History Page](images/05-order-history.png)

**Admin Panel:** Accessible via the 'admin' link in the top navigation. Displays purchase statistics and trending products.
![Redis Microservices E-commerce App Frontend - Admin Page](images/06-admin-charts.png)
![Redis Microservices E-commerce App Frontend - Admin Page](images/07-admin-top-trending.png)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
:::tip GITHUB CODE

Below is a command to the clone the source code for the application used in this tutorial

git clone --branch v9.2.0 https://github.com/redis-developer/redis-microservices-ecommerce-solutions

:::
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5974fdd

Please sign in to comment.