chatcat
ChatCat a Purer OpenAI-Based Client
File Explorer
Download Latest Version (.zip)- application_icon.icns
- application_icon1.icns
- application_icon2.icns
- background.png
- chatcat.png
- chatgpt.go
- root.go
- LICENSE
- main.go
- config.prod.yaml
- config.test.yaml
- config.go
- chat.go
- feedback.go
- model.go
- prompt.go
- setting.go
- tag.go
- github.go
- gpt.go
- help.go
- node.go
- http.go
- log.go
- mac.go
- pagination.go
- resp.go
- mock.go
- sqlite.go
- ticker.go
- upgrade.go
- websocket.go
- chat.go
- prompt.go
- setting.go
- version.go
- app.go
- appicon.png
- chat.js
- nunito-v16-latin-regular.woff2
- OFL.txt
- chatgpt_black_logo.svg
- chatgpt_logo.svg
- img.png
- img_1.png
- header.vue
- index.vue
- prompt-item.vue
- prompt-simple-item.vue
- config.js
- locale.ts
- common.ts
- home.ts
- settings.ts
- common.ts
- home.ts
- settings.ts
- en-US.ts
- index.ts
- zh-CN.ts
- prompt.js
- copy.js
- marked.js
- index.js
- home.js
- settings.js
- index.js
- routes.js
- cate-add.vue
- chat-list.vue
- content-header.vue
- menu-cate.vue
- menu-list.vue
- menu-tips.vue
- prompt-input.vue
- index.vue
- chat-drawer.vue
- chat-move.vue
- chat.vue
- contact.vue
- datasync.vue
- general-drawer.vue
- general.vue
- prompt-add.vue
- prompt-drawer.vue
- prompt.vue
- release-notes.vue
- index.vue
- App.vue
- main.js
- style.css
- index.html
- package.json
- README.md
- vite.config.js
- home.png
- setting_general.png
- setting_prompt.png
- use.gif
- go.mod
- LICENSE
- main.go
- Makefile
- README-zh_CN.md
- README.md
- wails.json
# Installation Guide
git clone https://github.com/MQEnergy/chatcat
Downloads the entire project code from GitHub to your computer.
cd chatcat
Moves into the project folder you just downloaded.
2. Node.js
Easy Recommendedcd frontend
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
3. Go
Mediumgo install .
Type this command into your terminal and run it.
Pulled directly from this repo's README.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make dev
Compiles the code based on the generated build configuration to produce an executable.
make build ENV=prod
Compiles the code based on the generated build configuration to produce an executable.
make dmg
Compiles the code based on the generated build configuration to produce an executable.
make darwin/amd64 ENV=prod
Compiles the code based on the generated build configuration to produce an executable.
make darwin/arm64 ENV=prod
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
