Skip to content

Commit 22746fb

Browse files
Add descriptions for pages (#24)
1 parent 3e736e7 commit 22746fb

File tree

10 files changed

+40
-12
lines changed

10 files changed

+40
-12
lines changed

public/sitemap-0.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
3-
<url><loc>https://docs.flowinquiry.io/developer_guides/frontend/project_structure</loc><lastmod>2025-01-26T23:32:37.181Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
4-
<url><loc>https://docs.flowinquiry.io</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
5-
<url><loc>https://docs.flowinquiry.io/developer_guides/frontend/getting_started</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
6-
<url><loc>https://docs.flowinquiry.io/about</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
7-
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/database_migration</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
8-
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/getting_started</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
9-
<url><loc>https://docs.flowinquiry.io/developer_guides</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
10-
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/high_level_architect</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
11-
<url><loc>https://docs.flowinquiry.io/developer_guides/deployment/docker</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
12-
<url><loc>https://docs.flowinquiry.io/developer_guides/how_to_contributes</loc><lastmod>2025-01-26T23:32:37.182Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
3+
<url><loc>https://docs.flowinquiry.io/developer_guides/deployment/docker</loc><lastmod>2025-01-29T08:37:17.438Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
4+
<url><loc>https://docs.flowinquiry.io/developer_guides/frontend/project_structure</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
5+
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/getting_started</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
6+
<url><loc>https://docs.flowinquiry.io/developer_guides</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
7+
<url><loc>https://docs.flowinquiry.io/about</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
8+
<url><loc>https://docs.flowinquiry.io/developer_guides/how_to_contributes</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
9+
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/high_level_architect</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
10+
<url><loc>https://docs.flowinquiry.io/developer_guides/frontend/getting_started</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
11+
<url><loc>https://docs.flowinquiry.io/developer_guides/backend/database_migration</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
12+
<url><loc>https://docs.flowinquiry.io</loc><lastmod>2025-01-29T08:37:17.439Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
1313
</urlset>

src/app/about/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
sidebarTitle: About
3-
description: Learn about Nextra's history, team, and contributors, and explore how open-source technologies power Nextra's features.
3+
description: Discover the technologies behind FlowInquiry, including Spring Boot, Next.js, PostgreSQL, Liquibase, Hibernate, Shadcn, TailwindCSS and others. Learn how these frameworks power our platform.
44
---
55

66
# About

src/app/developer_guides/backend/database_migration/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Learn how to run database migrations for FlowInquiry using Liquibase. Follow step-by-step instructions to apply schema changes and manage versioning efficiently.
3+
---
4+
15
# Database Migration
26

37
We use Liquibase as a database migration tool to manage and version database schema changes. It allows us to create, modify, and track schema updates in a structured and consistent manner. By using Liquibase, we ensure seamless schema evolution across environments,

src/app/developer_guides/backend/getting_started/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Get started with FlowInquiry's back-end development using Spring Boot and PostgreSQL. Learn how to set up the project, configure the environment, and run the application.
3+
---
4+
15
import { Callout, FileTree, Tabs } from "nextra/components";
26

37
# Getting started

src/app/developer_guides/backend/high_level_architect/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Explore the high-level architecture of FlowInquiry's back-end, built with Spring Boot, PostgreSQL, and other components. Learn about its modular design, APIs, and scalability.
3+
---
4+
15
# High Level Architect
26

37
The FlowInquiry Backend is the core service layer of the FlowInquiry application, responsible for handling business logic, data management, event-driven actions, and integrations. It provides RESTful APIs to interact with the FlowInquiry Frontend and other systems, ensuring secure, scalable, and efficient operations. The backend adheres to a modular design where each component has a distinct responsibility to enhance maintainability and extensibility.

src/app/developer_guides/deployment/docker/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Deploy FlowInquiry with Docker using our step-by-step guide. Learn how to set up containers, configure environments, and run the application seamlessly.
3+
---
4+
15
import { Callout, Tabs } from "nextra/components";
26

37
# Docker

src/app/developer_guides/frontend/getting_started/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Get started with FlowInquiry's front-end development using Next.js, TypeScript, and TailwindCSS. Learn how to set up the project, configure the environment, and contribute to the open-source platform seamlessly.
3+
---
4+
15
import { Callout, FileTree, Tabs } from "nextra/components";
26

37
# Getting Started

src/app/developer_guides/frontend/project_structure/page.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Explore the project structure of FlowInquiry's front-end, built with Next.js, TypeScript, and TailwindCSS. Understand the directory layout, key components, and best practices for efficient development and contribution.
3+
---
4+
15
# Project Structure
26

37
FlowInquiry is a [Next.js](https://nextjs.org/) 15 application that follows the standard project structure and utilizes the App Router for routing. The structure is designed to ensure modularity, scalability, and ease of maintenance. Below is a detailed description of the main components:
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
description: Learn how to contribute to FlowInquiry, an open-source project. Follow the guidelines for setting up the environment, submitting pull requests, and collaborating with the community.
3+
---
4+
15
# Contribution Welcome
26

37
We warmly welcome contributions to this project! Whether you want to report bugs, share ideas, fix issues, or develop new features, your input is highly valued. By participating, you help us improve the project and make it more useful for everyone. Contributions can take many forms, from submitting bug reports and proposing enhancements to writing code or improving documentation. Feel free to explore the project, and don’t hesitate to get involved. Together, we can make this project even better!

src/app/developer_guides/page.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Nextra is a framework built on top of Next.js that enables the creation of content-focused websites. It combines the robust features of Next.js with enhanced capabilities for crafting Markdown-based content.
2+
description: Discover the programming languages and development tools powering FlowInquiry. Built with Java, TypeScript, Python, and AI-driven automation, FlowInquiry leverages modern frameworks, databases, and cloud-native technologies for seamless ticket management and workflow customization
33
---
44

55
import { Callout, Tabs } from "nextra/components";

0 commit comments

Comments
 (0)