├── .github └── ISSUE_TEMPLATE │ ├── other.md │ ├── tip.md │ ├── bug.md │ ├── question.md │ ├── library.md │ └── help.md └── README.md /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other 3 | about: Template for other issue 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tip.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sharing a tip 3 | about: Template for sharing a tip 4 | title: '💡' 5 | labels: 'type-Tip :bulb:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Reporting a bug 3 | about: Template for reporting a bug 4 | title: '' 5 | labels: 'type-Bug :beetle:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Asking a question 3 | about: Template for asking a question 4 | title: '' 5 | labels: 'type-Question :thinking:' 6 | assignees: '' 7 | 8 | --- 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Forum 2 | 3 | This repo is used to host the issue tracker that is used as the main discussion forum of the module. 4 | 5 | * You are encouraged to `watch` this repo; that way, you will get an immediate email alert when there is an update to an issue 6 | * You can also subscribe to (or unsubsribe from) specific issues 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/library.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Requesting Permission to use a Third-Party Library 3 | about: Template for library approval 4 | title: '' 5 | labels: 'type-RequestToUseLibrary' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Library 11 | 12 | [Library Name](Library URL) 13 | 14 | ## Purpose 15 | 16 | {Explain for what kind of functionality you intende to use it for} 17 | 18 | ## License 19 | 20 | {Mention the license under which the library is released (e.g., MIT, GPL, Apache etc.) and give a link to the relevant page on their website} 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Requesting for Help 3 | about: Template for seekling help 4 | title: '' 5 | labels: 'type-HelpRequest :sos:' 6 | assignees: '' 7 | 8 | --- 9 | 10 | Remember to give sufficient details e.g., 11 | * Your development environment (IntelliJ version, Java version, OS, ...) 12 | * Relevant code, error message, stack trace 13 | * Relevant code snippet (an example given below), or link to the relevant code on your GitHub repo 14 | 15 | ```java 16 | String value = "Some code here" 17 | ``` 18 | 19 | :bulb: You can use [Markdown](https://guides.github.com/features/mastering-markdown/) to format your text 20 | --------------------------------------------------------------------------------