Thank you for considering contributing to our Research Computing Use-Cases repository. This guide outlines how you can contribute a new use-case Readme.md
file that follows the repository's standard.
- Familiarity with Markdown.
- Basic understanding of cloud computing and the service for which you are creating the use-case (GCP, AWS, etc.)
- Installed software:
- Git
- Text editor (e.g., VS Code, Sublime Text)
- Fork this repository.
- Clone the forked repository to your local machine.
- Branch: Create a new branch named as
use-case/your-use-case-name
. - Directory: Navigate to the
use-cases/
directory. - New Folder: Create a new folder for your use-case.
- Readme.md: Inside this folder, create a
Readme.md
file. - Content: Populate the
Readme.md
file using the template below. - Commit: Commit your changes.
- Push: Push the changes to your fork.
- Pull Request: Create a pull request against the main repository for review.
# Use-Case - Your Use-Case Title Here
## Step-by-Step Instructions
### Step 1 - Title for Step 1
- Detailed instructions for Step 1.
### Step 2 - Title for Step 2
- Detailed instructions for Step 2.
... (Add more steps as needed)
#### Code Blocks
Insert code blocks where needed. For example:
```bash
echo "Hello, World!"
- Issue: Description of the issue.
- Solution: Solution to resolve the issue.
- List any best practices related to this use-case.
---
## Troubleshooting & FAQ
- **Q**: I'm not sure how to write Markdown.
- **A**: You can refer to this [Markdown Guide](https://www.markdownguide.org/).
- **Q**: How do I test my `Readme.md` file?
- **A**: You can use online Markdown editors like [Dillinger](https://dillinger.io/) to preview your Markdown file.
- **Q**: Who do I contact if I have questions?
- **A**: You can create an issue in the repository, and someone will assist you shortly.
---
Thank you for contributing to the Research Computing Use-Cases Repository!