folder structure refactor

This commit is contained in:
2025-08-06 10:27:21 +05:30
parent 498bda216b
commit 49a64062af
732 changed files with 48173 additions and 48163 deletions

0
app/.github/workflows/ci.yml vendored Normal file
View File

24
app/.github/workflows/deploy-docs.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Deploy Docsify
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Build Docsify site
run: docsify serve docs --port 4000