Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Contributing Guidelines

## Submitting Your Task

1. **Fork the repository** to your GitHub account.
2. **Clone** the forked repository:

```bash
git clone https://github.com/<your_username>/Web3bridge Rust Masterclass Cohort II
cd Web3bridge Rust Masterclass Cohort II
```

3. **Sync with upstream** regularly:

```bash
git remote add upstream https://github.com/Bloceducare/Web3bridge Rust Masterclass Cohort II
git pull upstream master
git push origin master
```

4. **Navigate to the correct folder** (`week-x/day-y/your_name`).
5. **Submit a PR** following the template.
6. **Wait for mentor review** and address feedback if needed.

## Code of Conduct

- Follow best practices and structured folder naming.
- Be respectful in discussions and PR comments.
- Test your work before submitting.
# Contributing Guidelines
## Submitting Your Task
1. **Fork the repository** to your GitHub account.
2. **Clone** the forked repository:
```bash
git clone https://github.com/<your_username>/Web3bridge Rust Masterclass Cohort II
cd Web3bridge Rust Masterclass Cohort II
```
3. **Sync with upstream** regularly:
```bash
git remote add upstream https://github.com/Bloceducare/Web3bridge Rust Masterclass Cohort II
git pull upstream master
git push origin master
```
4. **Navigate to the correct folder** (`week-x/day-y/your_name`).
5. **Submit a PR** following the template.
6. **Wait for mentor review** and address feedback if needed.
## Code of Conduct
- Follow best practices and structured folder naming.
- Be respectful in discussions and PR comments.
- Test your work before submitting.
58 changes: 29 additions & 29 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
## Issue Report

### Type of Issue:

- [ ] Bug Report
- [ ] Task Clarification
- [ ] Other

### Description:

Describe the issue or question in detail.

### Steps to Reproduce (if applicable):

1. Step 1
2. Step 2
3. Step 3

### Expected Behavior:

Explain what should have happened.

### Actual Behavior:

Explain what actually happened.

### Additional Notes:

Any screenshots or additional info.
## Issue Report
### Type of Issue:
- [ ] Bug Report
- [ ] Task Clarification
- [ ] Other
### Description:
Describe the issue or question in detail.
### Steps to Reproduce (if applicable):
1. Step 1
2. Step 2
3. Step 3
### Expected Behavior:
Explain what should have happened.
### Actual Behavior:
Explain what actually happened.
### Additional Notes:
Any screenshots or additional info.
46 changes: 23 additions & 23 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
## Task Submission PR

### Student Info:

- **Registered Name:** <your_name>
- **Week:** <week_number>
- **Day:** <day_number>

### Task Details:

- **Task Name:** <task_title>
- **Task Description:** Briefly describe the task completed.

### Checklist Before Submitting:

- [ ] My code follows the repository folder structure.
- [ ] I have properly named my files and folders.
- [ ] I have documented my code where necessary.
- [ ] I have tested my solution and ensured it works as expected.

### Additional Comments:

If any, mention here.
## Task Submission PR
### Student Info:
- **Registered Name:** <your_name>
- **Week:** <week_number>
- **Day:** <day_number>
### Task Details:
- **Task Name:** <task_title>
- **Task Description:** Briefly describe the task completed.
### Checklist Before Submitting:
- [ ] My code follows the repository folder structure.
- [ ] I have properly named my files and folders.
- [ ] I have documented my code where necessary.
- [ ] I have tested my solution and ensured it works as expected.
### Additional Comments:
If any, mention here.
18 changes: 9 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# macOS junk
.DS_Store

# Rust build artifacts
target/

# Env files
.env

# macOS junk
.DS_Store
# Rust build artifacts
target/
# Env files
.env
Loading