You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 9.7KB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # CONTRIBUTING
  2. So you're looking to contribute to Dify - that's awesome, we can't wait to see what you do. As a startup with limited headcount and funding, we have grand ambitions to design the most intuitive workflow for building and managing LLM applications. Any help from the community counts, truly.
  3. We need to be nimble and ship fast given where we are, but we also want to make sure that contributors like you get as smooth an experience at contributing as possible. We've assembled this contribution guide for that purpose, aiming at getting you familiarized with the codebase & how we work with contributors, so you could quickly jump to the fun part.
  4. This guide, like Dify itself, is a constant work in progress. We highly appreciate your understanding if at times it lags behind the actual project, and welcome any feedback for us to improve.
  5. In terms of licensing, please take a minute to read our short [License and Contributor Agreement](./LICENSE). The community also adheres to the [code of conduct](https://github.com/langgenius/.github/blob/main/CODE_OF_CONDUCT.md).
  6. ## Before you jump in
  7. [Find](https://github.com/langgenius/dify/issues?q=is:issue+is:open) an existing issue, or [open](https://github.com/langgenius/dify/issues/new/choose) a new one. We categorize issues into 2 types:
  8. ### Feature requests
  9. * If you're opening a new feature request, we'd like you to explain what the proposed feature achieves, and include as much context as possible. [@perzeusss](https://github.com/perzeuss) has made a solid [Feature Request Copilot](https://udify.app/chat/MK2kVSnw1gakVwMX) that helps you draft out your needs. Feel free to give it a try.
  10. * If you want to pick one up from the existing issues, simply drop a comment below it saying so.
  11. A team member working in the related direction will be looped in. If all looks good, they will give the go-ahead for you to start coding. We ask that you hold off working on the feature until then, so none of your work goes to waste should we propose changes.
  12. Depending on whichever area the proposed feature falls under, you might talk to different team members. Here's rundown of the areas each our team members are working on at the moment:
  13. | Member | Scope |
  14. | ------------------------------------------------------------ | ---------------------------------------------------- |
  15. | [@yeuoly](https://github.com/Yeuoly) | Architecting Agents |
  16. | [@jyong](https://github.com/JohnJyong) | RAG pipeline design |
  17. | [@GarfieldDai](https://github.com/GarfieldDai) | Building workflow orchestrations |
  18. | [@iamjoel](https://github.com/iamjoel) & [@zxhlyh](https://github.com/zxhlyh) | Making our frontend a breeze to use |
  19. | [@guchenhe](https://github.com/guchenhe) & [@crazywoola](https://github.com/crazywoola) | Developer experience, points of contact for anything |
  20. | [@takatost](https://github.com/takatost) | Overall product direction and architecture |
  21. How we prioritize:
  22. | Feature Type | Priority |
  23. | ------------------------------------------------------------ | --------------- |
  24. | High-Priority Features as being labeled by a team member | High Priority |
  25. | Popular feature requests from our [community feedback board](https://github.com/langgenius/dify/discussions/categories/feedbacks) | Medium Priority |
  26. | Non-core features and minor enhancements | Low Priority |
  27. | Valuable but not immediate | Future-Feature |
  28. ### Anything else (e.g. bug report, performance optimization, typo correction)
  29. * Start coding right away.
  30. How we prioritize:
  31. | Issue Type | Priority |
  32. | ------------------------------------------------------------ | --------------- |
  33. | Bugs in core functions (cannot login, applications not working, security loopholes) | Critical |
  34. | Non-critical bugs, performance boosts | Medium Priority |
  35. | Minor fixes (typos, confusing but working UI) | Low Priority |
  36. ## Installing
  37. Here are the steps to set up Dify for development:
  38. ### 1. Fork this repository
  39. ### 2. Clone the repo
  40. Clone the forked repository from your terminal:
  41. ```shell
  42. git clone git@github.com:<github_username>/dify.git
  43. ```
  44. ### 3. Verify dependencies
  45. Dify requires the following dependencies to build, make sure they're installed on your system:
  46. * [Docker](https://www.docker.com/)
  47. * [Docker Compose](https://docs.docker.com/compose/install/)
  48. * [Node.js v18.x (LTS)](http://nodejs.org)
  49. * [pnpm](https://pnpm.io/)
  50. * [Python](https://www.python.org/) version 3.11.x or 3.12.x
  51. ### 4. Installations
  52. Dify is composed of a backend and a frontend. Navigate to the backend directory by `cd api/`, then follow the [Backend README](api/README.md) to install it. In a separate terminal, navigate to the frontend directory by `cd web/`, then follow the [Frontend README](web/README.md) to install.
  53. Check the [installation FAQ](https://docs.dify.ai/learn-more/faq/install-faq) for a list of common issues and steps to troubleshoot.
  54. ### 5. Visit dify in your browser
  55. To validate your set up, head over to [http://localhost:3000](http://localhost:3000) (the default, or your self-configured URL and port) in your browser. You should now see Dify up and running.
  56. ## Developing
  57. If you are adding a model provider, [this guide](https://github.com/langgenius/dify/blob/main/api/core/model_runtime/README.md) is for you.
  58. If you are adding a tool provider to Agent or Workflow, [this guide](./api/core/tools/README.md) is for you.
  59. To help you quickly navigate where your contribution fits, a brief, annotated outline of Dify's backend & frontend is as follows:
  60. ### Backend
  61. Dify’s backend is written in Python using [Flask](https://flask.palletsprojects.com/en/3.0.x/). It uses [SQLAlchemy](https://www.sqlalchemy.org/) for ORM and [Celery](https://docs.celeryq.dev/en/stable/getting-started/introduction.html) for task queueing. Authorization logic goes via Flask-login.
  62. ```text
  63. [api/]
  64. ├── constants // Constant settings used throughout code base.
  65. ├── controllers // API route definitions and request handling logic.
  66. ├── core // Core application orchestration, model integrations, and tools.
  67. ├── docker // Docker & containerization related configurations.
  68. ├── events // Event handling and processing
  69. ├── extensions // Extensions with 3rd party frameworks/platforms.
  70. ├── fields // field definitions for serialization/marshalling.
  71. ├── libs // Reusable libraries and helpers.
  72. ├── migrations // Scripts for database migration.
  73. ├── models // Database models & schema definitions.
  74. ├── services // Specifies business logic.
  75. ├── storage // Private key storage.
  76. ├── tasks // Handling of async tasks and background jobs.
  77. └── tests
  78. ```
  79. ### Frontend
  80. The website is bootstrapped on [Next.js](https://nextjs.org/) boilerplate in Typescript and uses [Tailwind CSS](https://tailwindcss.com/) for styling. [React-i18next](https://react.i18next.com/) is used for internationalization.
  81. ```text
  82. [web/]
  83. ├── app // layouts, pages, and components
  84. │ ├── (commonLayout) // common layout used throughout the app
  85. │ ├── (shareLayout) // layouts specifically shared across token-specific sessions
  86. │ ├── activate // activate page
  87. │ ├── components // shared by pages and layouts
  88. │ ├── install // install page
  89. │ ├── signin // signin page
  90. │ └── styles // globally shared styles
  91. ├── assets // Static assets
  92. ├── bin // scripts ran at build step
  93. ├── config // adjustable settings and options
  94. ├── context // shared contexts used by different portions of the app
  95. ├── dictionaries // Language-specific translate files
  96. ├── docker // container configurations
  97. ├── hooks // Reusable hooks
  98. ├── i18n // Internationalization configuration
  99. ├── models // describes data models & shapes of API responses
  100. ├── public // meta assets like favicon
  101. ├── service // specifies shapes of API actions
  102. ├── test
  103. ├── types // descriptions of function params and return values
  104. └── utils // Shared utility functions
  105. ```
  106. ## Submitting your PR
  107. At last, time to open a pull request (PR) to our repo. For major features, we first merge them into the `deploy/dev` branch for testing, before they go into the `main` branch. If you run into issues like merge conflicts or don't know how to open a pull request, check out [GitHub's pull request tutorial](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests).
  108. And that's it! Once your PR is merged, you will be featured as a contributor in our [README](https://github.com/langgenius/dify/blob/main/README.md).
  109. ## Getting Help
  110. If you ever get stuck or got a burning question while contributing, simply shoot your queries our way via the related GitHub issue, or hop onto our [Discord](https://discord.gg/8Tpq4AcN9c) for a quick chat.