Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

5 лет назад
7 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # Contribute
  2. ## Introduction
  3. First, thank you for considering contributing to LessPass! It's people like you that make the open source community great! 😊
  4. We welcome any type of contribution, not only code. You can help by...
  5. - **QA**: filing bug reports; the more details you can give the better (e.g. screenshots with the console open)
  6. - **Marketing**: writing blog posts and howto's, making videos, updating the wiki, writing documentation, printing stickers, ...
  7. - **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, hosting a [hackathon](https://en.wikipedia.org/wiki/Hackathon) for LessPass, ...
  8. - **Code**: taking a look at the [open issues](issues). Even if you can't write code, commenting on them and showing that you care about a given issue matters. It helps us triage them.
  9. - **Money**: helping us financially. We welcome financial contributions in full transparency on our [Open Collective page](https://opencollective.com/lesspass).
  10. ## Your first contribution
  11. Working on your first Pull Request? You can learn how using this *free* series, [*How to Contribute to an Open Source Project on GitHub*](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github).
  12. ## Development
  13. ### Tools
  14. Before diving in to the code, you'll need these tools installed in your environment:
  15. * [NodeJS](https://nodejs.org/)
  16. * [Yarn](https://yarnpkg.com/)
  17. The mobile apps need:
  18. * [Gradle](https://developer.android.com/studio/build/) for Android
  19. * [Xcode](https://developer.apple.com/xcode/) for iOS
  20. If you are working on the CLI, you will need:
  21. * [Python 3](https://www.python.org/)
  22. ### Folder architecture
  23. Here a some folders that worth noticing :
  24. * `package` contains the code for the web version and the browser extension. Development is done with `javascript` and `Vue`.
  25. * `lesspass-pure` contains the core of `lesspass`. Running `yarn dev` in this folder will run a `lesspass` instance locally.
  26. * `lesspass-web-extension` contains the code specific for the web extension.
  27. * `lesspass-render-password` contains the algorithm to generate passwords.
  28. * `cli` contains the command line version. Development is done with `python`.
  29. * `mobile` contains the `android` and `ios` version. Development is done with `javascript` and `react native`.
  30. ### Commands
  31. To install dependencies, please run `yarn install`
  32. To run tests, you can run `yarn test` in the root directory or any sub-folder describe above.
  33. ## Submitting code
  34. Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it. The pull request should also contain tests for any new functionality.
  35. ## Code review process
  36. The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge.
  37. It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you? How will it benefit LessPass?
  38. ## Financial contributions
  39. We accept donations, financial backing, and sponsorships via [Open Collective](https://opencollective.com/lesspass).
  40. Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our Open Collective by the core contributors and the person who filed the expense will be reimbursed.
  41. ## Questions
  42. If you have any questions, create an [issue](issue). Protip: do a quick search first to see if someone else has asked the same question before!
  43. You can also reach the core contributors at contact@lesspass.com
  44. ## Credits
  45. ### Contributors
  46. Thank you to all the people who have already contributed to LessPass!
  47. [![Contributors list](https://opencollective.com/lesspass/contributors.svg?width=890)](https://github.com/lesspass/lesspass/graphs/contributors)
  48. ### Backers
  49. Thank you to all our backers! [Become a backer on Open Collective](https://opencollective.com/lesspass#backer).
  50. <a href="https://opencollective.com/lesspass#backers" target="_blank">![Backers list](https://opencollective.com/lesspass/backers.svg?width=890)</a>
  51. ### Sponsors
  52. Thank you to all our sponsors!
  53. <a href="https://opencollective.com/lesspass/sponsor/0/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/0/avatar.svg"></a>
  54. <a href="https://opencollective.com/lesspass/sponsor/1/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/1/avatar.svg"></a>
  55. <a href="https://opencollective.com/lesspass/sponsor/2/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/2/avatar.svg"></a>
  56. <a href="https://opencollective.com/lesspass/sponsor/3/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/3/avatar.svg"></a>
  57. <a href="https://opencollective.com/lesspass/sponsor/4/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/4/avatar.svg"></a>
  58. <a href="https://opencollective.com/lesspass/sponsor/5/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/5/avatar.svg"></a>
  59. <a href="https://opencollective.com/lesspass/sponsor/6/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/6/avatar.svg"></a>
  60. <a href="https://opencollective.com/lesspass/sponsor/7/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/7/avatar.svg"></a>
  61. <a href="https://opencollective.com/lesspass/sponsor/8/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/8/avatar.svg"></a>
  62. <a href="https://opencollective.com/lesspass/sponsor/9/website" target="_blank"><img src="https://opencollective.com/lesspass/sponsor/9/avatar.svg"></a>
  63. Are you a member of a company or organization that might be willing to sponsor LessPass? Please ask them to consider supporting this open source project by [becoming a sponsor](https://opencollective.com/lesspass#sponsor)!
  64. <!-- This `CONTRIBUTING.md` is based on @nayafia's template https://github.com/nayafia/contributing-template -->