-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ENH] Add Discord link and mention semver label in
latest
images (#223
) * restructure getting help page & add Discord link * explain how to find semver for a 'latest' image * remove outdated warning about updating graph data * Update phrasing Co-authored-by: Sebastian Urchs <[email protected]> * Rephrasing and add link to semver website * ignore old nipoppy repo links and fix regex patterns in mlc config --------- Co-authored-by: Sebastian Urchs <[email protected]>
- Loading branch information
Showing
3 changed files
with
48 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
# Getting Help | ||
|
||
There are several ways you can interact with the Neurobagel team: | ||
|
||
- Create an issue in our [GitHub repositories](https://github.com/neurobagel) | ||
- Our tag on the [Neurostars forum](https://neurostars.org/tag/neurobagel) | ||
- Join our [Discord server](https://discord.gg/BEXXgt3hXk) to chat with us | ||
|
||
## Usage or general questions | ||
If you have a _usage question_ about Neurobagel (e.g., troubleshooting setup, feedback on a specific use case), | ||
or want to _discuss the Neurobagel project in general_ with the development team or other users, | ||
please either: | ||
|
||
- search for or start a new thread on Neurostars with the `neurobagel` tag: [https://neurostars.org/tag/neurobagel](https://neurostars.org/tag/neurobagel) or | ||
- send us a message in the [Neurobagel Discord server](https://discord.gg/BEXXgt3hXk) | ||
|
||
## Report a bug or request a feature | ||
For a bug or feature request, feel free to open an issue in the repository for the relevant tool in the [Neurobagel GitHub organization](https://github.com/neurobagel). | ||
For _bug reports_ or _feature requests_, we prefer if you open an issue in the repository for the relevant tool in the [Neurobagel GitHub organization](https://github.com/neurobagel). | ||
|
||
If you are using one of our web tools ([https://annotate.neurobagel.org](https://annotate.neurobagel.org) or [https://query.neurobagel.org](https://query.neurobagel.org), you can also submit suggestions and bugs using the feedback widget directly on the site. | ||
If you are using one of our web tools ([https://annotate.neurobagel.org](https://annotate.neurobagel.org) or [https://query.neurobagel.org](https://query.neurobagel.org)), | ||
you may also submit bug reports and feature requests using the feedback widget directly on the app. | ||
|
||
## Documentation feedback | ||
We are always looking to improve our user documentation. | ||
To request a change or addition to existing documentation, please [open an issue in the `neurobagel/documentation` repo](https://github.com/neurobagel/documentation/issues). | ||
|
||
## General questions | ||
For general questions about Neurobagel, please open an issue on Neurostars with the `neurobagel` tag: [https://neurostars.org/tag/neurobagel](https://neurostars.org/tag/neurobagel). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
{ | ||
"ignorePatterns": [ | ||
{"pattern": "http://neurobagel.org/vocab/*"}, | ||
{"pattern": "http://neurobagel.org/vocab/.*"}, | ||
{"pattern": "http://neurobagel.org/graph/"}, | ||
{"pattern": "https://www.cognitiveatlas.org/task/id/"}, | ||
{"pattern": "^../"}, | ||
{"pattern": "localhost*"}, | ||
{"pattern": "https://api.neurobagel.org/*"}, | ||
{"pattern": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#"} | ||
{"pattern": "^../.*"}, | ||
{"pattern": ".*localhost.*"}, | ||
{"pattern": "https://api.neurobagel.org/.*"}, | ||
{"pattern": "http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#"}, | ||
{"pattern": "https://github.com/neurodatascience/nipoppy/.*"} | ||
], | ||
"timeout": "60s" | ||
} |