-
Notifications
You must be signed in to change notification settings - Fork 35
added faq page #90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
added faq page #90
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| id: FAQ | ||
| title: Frequently Asked Questions | ||
|
|
||
| --- | ||
| # Frequently Asked Questions (FAQ) | ||
|
|
||
| Welcome to the OpsiMate FAQ! | ||
| This page provides quick answers to common questions about installation, configuration, and contributing to OpsiMate. | ||
|
|
||
|
|
||
|
|
||
| ## 🔍 General | ||
|
|
||
| **What is OpsiMate?** | ||
| OpsiMate is an open-source tool designed to simplify managing Opsi environments, automate configuration, and help both new and experienced users streamline their workflows. | ||
|
|
||
| **Who maintains OpsiMate?** | ||
| OpsiMate is maintained by the community, with contributors focused on improving installation, performance, and usability. | ||
|
|
||
| **Is OpsiMate free to use?** | ||
| Yes! OpsiMate is open source and completely free under its license. | ||
|
|
||
|
|
||
| ## ⚙️ Installation & Configuration | ||
|
|
||
| **How do I install OpsiMate?** | ||
| Check the [Introduction](intro.md) for setup instructions. | ||
|
|
||
| **Can I integrate OpsiMate with other tools?** | ||
| Yes — OpsiMate supports integrations. See [Core Features](core-features.md) for details. | ||
|
|
||
| **Where is the configuration file located?** | ||
| Configuration details are explained in the installation section. | ||
|
|
||
|
|
||
|
|
||
| ## 🧑💻 Contributing & Community | ||
|
|
||
| **How can I contribute?** | ||
| Read our [Development Guide](development.md) to learn how to contribute, submit PRs, or suggest new features. | ||
|
|
||
| **Where can I ask questions or report issues?** | ||
| Open a discussion or issue on our [GitHub repository](https://github.com/OpsiMate/documentation). | ||
|
|
||
| **Do I need approval before contributing?** | ||
| Not for small changes! For major updates, please open an issue to discuss the approach first. | ||
|
|
||
|
|
||
|
|
||
| ## 🔗 Useful Links | ||
|
|
||
| - [Introduction](intro.md) | ||
| - [Core Features](core-features.md) | ||
| - [Development Guide](development.md) | ||
| - [GitHub Repository](https://github.com/OpsiMate/documentation) |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove contradictory type-checking directives.
Having both
@ts-check(Line 12) and@ts-nocheck(Line 13) in the same file is contradictory. The@ts-nocheckdirective effectively cancels out@ts-check, disabling type checking entirely.Either remove
@ts-nocheckif you want type checking enabled, or remove both directives if type checking is not needed:// @ts-check -// @ts-nocheck📝 Committable suggestion
🤖 Prompt for AI Agents