Skip to content

Commit 502a17f

Browse files
committed
init commit
1 parent c6ad3a7 commit 502a17f

20 files changed

+20071
-2
lines changed

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
1-
# code-llm
2-
搭载大语言模型的代码生成助理。使用react.js、ant design、ChatUI实现的纯客户端应用
1+
# Code-llm
2+
3+
搭载大语言模型的代码生成助理。使用react.js、ant design、ChatUI实现的纯客户端应用。
4+
5+
## 1、安装
6+
7+
```bash
8+
git clone https://github.com/git-cloner/code-llm
9+
cd code-llm
10+
npm i
11+
```
12+
13+
## 2、调试运行
14+
15+
```bash
16+
npm start
17+
```
18+
19+
## 3、编译
20+
21+
```bash
22+
npm run build
23+
```

0 commit comments

Comments
 (0)