Skip to content

Commit 9b116b5

Browse files
committed
Add setup and requirements documentation for all four languages.
- Created setup documentation for AI Assisted Coding Framework in Python and TypeScript. - Added comprehensive feature requirements template for InvenTree and ngLibrary applications. - Setup challenges for all four languages.
1 parent cfb2c0e commit 9b116b5

34 files changed

Lines changed: 2536 additions & 405 deletions

.github/workflows/docs.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish docs via GitHub Pages
2+
on:
3+
push:
4+
branches:
5+
- main
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
name: Deploy docs
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout main
14+
uses: actions/checkout@v2
15+
16+
- name: Deploy docs
17+
uses: mhausenblas/mkdocs-deploy-gh-pages@master
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
REQUIREMENTS: requirements.txt

0 commit comments

Comments
 (0)