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

docs-seo #126

Merged
merged 11 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from 8 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
9 changes: 9 additions & 0 deletions .cursorignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Add directories or file patterns to ignore during indexing (e.g. foo/ or *.csv)
**/.kotlin/
**/.gradle/
**/.idea/
**/build
.idea
.kotlin
.build
.gradle
4 changes: 3 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
cache-dependency-path: './docs/package-lock.json'

- name: Update docs/README.md
run: cp ./README.md ./docs/docs/README.md
run: |
chmod -R +x ./scripts
./scripts/update_readme.sh

- name: Install docs deps
run: cd docs && npm ci
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ hs_err_pid*
/.idea/other.xml

### Custom rules
.kotlin
Nek-12 marked this conversation as resolved.
Show resolved Hide resolved
.firebase-service-account.json
/.idea/artifacts/**
!gradle/gradle-wrapper.jar
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![](https://opensource.respawn.pro/FlowMVI/banner.png)
![FlowMVI Framework Banner](https://opensource.respawn.pro/FlowMVI/banner.webp)

[![CI](https://github.com/respawn-app/FlowMVI/actions/workflows/ci.yml/badge.svg)](https://github.com/respawn-app/FlowMVI/actions/workflows/ci.yml)
![License](https://img.shields.io/github/license/respawn-app/flowMVI)
Expand Down Expand Up @@ -384,7 +384,13 @@ timerPlugin(timer).test(Loading) {
IDE plugin generates code and lets you debug and control your app remotely:
[![Plugin](https://img.shields.io/jetbrains/plugin/v/25766?style=flat)](https://plugins.jetbrains.com/plugin/25766-flowmvi)

https://github.com/user-attachments/assets/05f8efdb-d125-4c4a-9bda-79875f22578f
<video
src='https://github.com/user-attachments/assets/05f8efdb-d125-4c4a-9bda-79875f22578f'
controls
width="100%"
alt="FlowMVI IDE Plugin Demo">
Your browser does not support the video element. You can view the demo at our website.
</video>

## People love the library:

Expand Down
10 changes: 10 additions & 0 deletions docs/docs/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
---
title: FlowMVI
title_meta: FlowMVI - Kotlin Architecture Framework
sidebar_label: Home
sidebar_position: 0
hide_title: true
description: Architecture Framework for Kotlin. Reuse every line of code. Handle all errors automatically. No boilerplate. Analytics, metrics, debugging in 3 lines. 50+ features.
slug: /
---

# FlowMVI

### Stub readme file, do not edit!
Expand Down
Loading