git templates updated

This commit is contained in:
2025-03-19 09:13:23 +05:30
parent cdf8dbbdba
commit 124e435504
39 changed files with 1650 additions and 73 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