├── SECURITY.md ├── CONTRIBUTING.md ├── .github ├── ISSUE_TEMPLATE │ ├── FUNDING.yml │ ├── config.yml │ ├── SUPPORT.md │ ├── Suggesting-Feature.md │ └── Reporting-Issue.md └── pull_request_template.md └── README.md /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security 2 | 3 | ## Reporting a Bug in F@H Software 4 | 5 | To report security vulnerabilities, please email joseph(at)cauldrondevelopment(dot)com -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | I'm really glad you're reading this, because we need volunteer developers to help this project come to fruition :) More information is on it's way. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://foldingathome.org/about/donate/", "https://alumni.wustl.edu/give/annualfund/Pages/Corporate-Matching.aspx", "https://gifts.wustl.edu/med/index.html?other_designation_description=Folding@Home%20(Dr%20Greg%20Bowman,%20Dept%20of%20Biochemistry)&0_d_tr1=71&sc=NG"] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Official F@H Forum 4 | url: https://foldingforum.org/index.php 5 | about: For discussion, troubleshooting, and questions. If in doubt, start at the Forum :) 6 | - name: F@H Discord 7 | url: https://discord.gg/foldingathome 8 | about: For general discussion and questions. 9 | - name: F@H Twitter 10 | url: https://twitter.com/foldingathome 11 | about: For contacting researchers directly. 12 | - name: F@H Website 13 | url: https://foldingathome.org/ 14 | about: Main website for F@H. 15 | - name: F@H Wikipedia 16 | url: https://en.wikipedia.org/wiki/Folding@home 17 | about: Additional information about F@H on Wikipedia. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- 1 | # Support 2 | 3 | F@H contributors have limited availability to address general support questions. Please make sure you are using the [latest version of the F@H Software](https://foldingathome.org/alternative-downloads/). 4 | 5 | When seeking support, please first search for your issue/question in these venues: 6 | 7 | * [Official F@H Forum](https://foldingforum.org/index.php) 8 | * [F@H Discord](https://discord.gg/foldingathome) 9 | * [F@H Website](https://foldingathome.org/) 10 | * Issues in the F@H GitHub organization: [Open](https://github.com/FoldingAtHome/fah-issues/issues?q=is%3Aissue+is%3Aopen+sort%3Acreated-desc) or [Closed](https://github.com/FoldingAtHome/fah-issues/issues?q=is%3Aissue+is%3Aclosed+sort%3Acreated-desc) 11 | 12 | GitHub issues are for tracking enhancements and bugs, not general support. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Suggesting-Feature.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Suggesting Feature 3 | about: Create a report about a feature in the Folding@home Software. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 17 | Your issue may already be reported! 18 | Please search on the [issue tracker](./) before creating one. 19 | 20 | ## Is your feature request related to a problem? 21 | 24 | 25 | 26 | ---- 27 | ## Describe the Feature 28 | 31 | 32 | 33 | ---- 34 | ## Context 35 | 38 | 39 | 40 | ---- -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
8 |
9 |