mirror of
https://github.com/Mintplex-Labs/anything-llm
synced 2026-04-25 17:15:37 +02:00
fix: typo in contribution guidelines, update project metadata and pull_request_temp...md (#5010)
Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
This commit is contained in:
@@ -94,12 +94,12 @@ The core library is written in Node.js. There are additional sub-repositories fo
|
||||
|
||||
Changes to the core AnythingLLM project are released through the `master` branch. When a PR is merged into `master`, a new version of the package is published to Docker and GitHub Container Registry under the `latest` tag.
|
||||
|
||||
When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the assoicated version tag. Version tags are of the format `v<major>.<minor>.<patch>` and are pinned code, while `latest` is the latest version of the code at any point in time.
|
||||
When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the associated version tag. Version tags are of the format `v<major>.<minor>.<patch>` and are pinned code, while `latest` is the latest version of the code at any point in time.
|
||||
|
||||
### Desktop propogation
|
||||
### Desktop propagation
|
||||
|
||||
Changes to the desktop app are downstream of the core AnythingLLM project. Releases of the desktop app are published at the same time as the core AnythingLLM project. Code from the core AnythingLLM project is copied into the desktop app into an Electron wrapper. The Electron wrapper that wraps around the core AnythingLLM project is **not** part of the core AnythingLLM project, but is maintained by the AnythingLLM team.
|
||||
|
||||
## License
|
||||
|
||||
By contributing to AnythingLLM (this repository), you agree to license your contributions under the MIT license.
|
||||
By contributing to AnythingLLM (this repository), you agree to license your contributions under the MIT license.
|
||||
|
||||
10
package.json
10
package.json
@@ -6,6 +6,14 @@
|
||||
"type": "module",
|
||||
"author": "Timothy Carambat (Mintplex Labs)",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/mintplex-labs/anything-llm.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/mintplex-labs/anything-llm/issues"
|
||||
},
|
||||
"homepage": "https://github.com/mintplex-labs/anything-llm#readme",
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
@@ -35,4 +43,4 @@
|
||||
"concurrently": "^9.1.2",
|
||||
"jest": "^29.7.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,36 +1,41 @@
|
||||
|
||||
### Pull Request Type
|
||||
### Pull Request Type
|
||||
|
||||
<!-- For change type, change [ ] to [x]. -->
|
||||
|
||||
- [ ] ✨ feat
|
||||
- [ ] 🐛 fix
|
||||
- [ ] ♻️ refactor
|
||||
- [ ] 💄 style
|
||||
- [ ] 🔨 chore
|
||||
- [ ] 📝 docs
|
||||
- [ ] ✨ feat (New feature)
|
||||
- [ ] 🐛 fix (Bug fix)
|
||||
- [ ] ♻️ refactor (Code refactoring without changing behavior)
|
||||
- [ ] 💄 style (UI style changes)
|
||||
- [ ] 🔨 chore (Build, CI, maintenance)
|
||||
- [ ] 📝 docs (Documentation updates)
|
||||
|
||||
### Relevant Issues
|
||||
|
||||
<!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" -->
|
||||
|
||||
resolves #xxx
|
||||
resolves #
|
||||
|
||||
### Description
|
||||
|
||||
<!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? -->
|
||||
|
||||
|
||||
### What is in this change?
|
||||
### Visuals (if applicable)
|
||||
|
||||
<!-- Describe the changes in this PR that are impactful to the repo. -->
|
||||
<!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. -->
|
||||
|
||||
|
||||
### Additional Information
|
||||
|
||||
<!-- Add any other context about the Pull Request here that was not captured above. -->
|
||||
|
||||
|
||||
### Developer Validations
|
||||
|
||||
<!-- All of the applicable items should be checked. -->
|
||||
|
||||
- [ ] I ran `yarn lint` from the root of the repo & committed changes
|
||||
- [ ] Relevant documentation has been updated
|
||||
- [ ] Relevant documentation has been updated (if applicable)
|
||||
- [ ] I have tested my code functionality
|
||||
- [ ] Docker build succeeds locally
|
||||
|
||||
Reference in New Issue
Block a user