Skip to content

Completed the hello-microverse project#1

Open
abel-tefera wants to merge 10 commits intomainfrom
initialize-project
Open

Completed the hello-microverse project#1
abel-tefera wants to merge 10 commits intomainfrom
initialize-project

Conversation

@abel-tefera
Copy link
Owner

Summary

  1. Added linters for HTML/CSS using github workflow
  2. Added the HTML and CSS files in a separate commit
  3. Added a test.md file to git ignore on the last commit

Copy link

@leonardodiasb leonardodiasb left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Required Changes ♻️ ⚠️ 🚦

Hi @abel-tefera,

Good job so far!
You still need to work on some issues to go to the next project, but you are almost there!

mario_ladders

Good points 👍

  • No linter errors. ✔️
  • Correct use of GitHub flow. ✔️

Aspects to improve ♻️

  • Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you take them into account as they can make your code better.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think the code review was unfair, you can request a second opinion using this form.

Comment on lines 3 to 11
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Microverse</title>
</head>
<body>
<h1 class="header">Hello,</h1>
</body>
Copy link

@leonardodiasb leonardodiasb Feb 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • You correctly created the CSS file, but the color is not being added to the 'Hello' text because it is not being imported by the HTML file. Kindly import the styles from the CSS file in the head of the index.html file and make sure that the styling is being applied.

README.md Outdated
Comment on lines 37 to 190
> A simple project.

**Hello Microverse Project** is a...

## 🛠 Built With <a name="built-with"></a>

### Tech Stack <a name="tech-stack"></a>

> Describe the tech stack and include only the relevant sections that apply to your project.

<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">React.js</a></li>
</ul>
</details>

<details>
<summary>Server</summary>
<ul>
<li><a href="https://expressjs.com/">Express.js</a></li>
</ul>
</details>

<details>
<summary>Database</summary>
<ul>
<li><a href="https://www.postgresql.org/">PostgreSQL</a></li>
</ul>
</details>

<!-- Features -->

### Key Features <a name="key-features"></a>

> Describe between 1-3 key features of the application.

- **[key_feature_1]**
- **[key_feature_2]**
- **[key_feature_3]**

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- LIVE DEMO -->

## 🚀 Live Demo <a name="live-demo"></a>

> Add a link to your deployed project.

- [Live Demo Link](https://yourdeployedapplicationlink.com)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- GETTING STARTED -->

## 💻 Getting Started <a name="getting-started"></a>

> Describe how a new developer could make use of your project.

To get a local copy up and running, follow these steps.

### Prerequisites

In order to run this project you need:

<!--
Example command:

```sh
gem install rails
```
-->

### Setup

Clone this repository to your desired folder:

<!--
Example commands:

```sh
cd my-folder
git clone git@github.com:myaccount/my-project.git
```
--->

### Install

Install this project with:

<!--
Example command:

```sh
cd my-project
gem install
```
--->

### Usage

To run the project, execute the following command:

<!--
Example command:

```sh
rails server
```
--->

### Run tests

To run tests, run the following command:

<!--
Example command:

```sh
bin/rails test test/models/article_test.rb
```
--->

### Deployment

You can deploy this project using:

<!--
Example:

```sh

```
-->

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- AUTHORS -->

## 👥 Authors <a name="authors"></a>

> Mention all of the collaborators of this project.

👤 **Author1**

- GitHub: [@githubhandle](https://github.com/githubhandle)
- Twitter: [@twitterhandle](https://twitter.com/twitterhandle)
- LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle)

👤 **Author2**

- GitHub: [@githubhandle](https://github.com/githubhandle)
- Twitter: [@twitterhandle](https://twitter.com/twitterhandle)
- LinkedIn: [LinkedIn](https://linkedin.com/in/linkedinhandle)
Copy link

@leonardodiasb leonardodiasb Feb 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • You used the correct template from Microverse for your README file, but currently, it is not well designed for this project. Please customize the sections and make sure they make sense for this project and look professional. Like the 'Author' section, it should contain links to your specific social pages.

Copy link

@ABDULALI3468 ABDULALI3468 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes Required 👍

Hi @abel-tefera ,

Great work on making the changes requested by a previous reviewer 👏
You've done really well implementing some of the requested changes, but there are still some which aren't been addressed yet.

Highlights

✅All linters are checked.
✅Project is professionally documented.
✅The right GitHub flow method has been used.
✅Professional pull request title and description.

Required Changes ♻️

Check the comments below to have a look at the required changes.

Optional suggestions

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear, and please remember to tag me in your question so I can receive the notification.

  • This is My GitHub: GitHub followers
  • This is My Linkedin: Linkedin Badge 
  • This is My Twitter: Twitter Badge 

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

Comment on lines 1 to 121
<a name="readme-top"></a>

<div align="center">

<h3><b>Hello Microverse Project</b></h3>

</div>

<!-- TABLE OF CONTENTS -->

# 📗 Table of Contents

- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
<!-- - [🚀 Live Demo](#live-demo) -->
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
<!-- - [Install](#install) -->
<!-- - [Usage](#usage) -->
<!-- - [Run tests](#run-tests) -->
<!-- - [Deployment](#triangular_flag_on_post-deployment) -->
- [👥 Authors](#authors)
<!-- - [🔭 Future Features](#future-features) -->
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)

<!-- PROJECT DESCRIPTION -->

# 📖 Hello Microverse Project <a name="about-project"></a>

> A simple HTML/CSS project.

**Hello Microverse Project** is my first project as a Microverse student.

## 🛠 Built With <a name="built-with"></a>

### Tech Stack <a name="tech-stack"></a>

> The technologies used are HTML/CSS only.

<details>
<summary>Client</summary>
<ul>
<li><a href="https://reactjs.org/">HTML/CSS</a></li>
</ul>
</details>

### Key Features <a name="key-features"></a>

> Key features include:

- **Hello Microverse Header**
- **Green text color**

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- GETTING STARTED -->

## 💻 Getting Started <a name="getting-started"></a>

> Steps to run:

To get a local copy up and running, follow these steps.

### Prerequisites

In order to run this project you need:

- A browser

### Setup

Clone this repository to your desired folder:

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- AUTHORS -->

## 👥 Authors <a name="authors"></a>

👤 **Author1**

- GitHub: [@abel-tefera](https://github.com/abel-tefera)
- Twitter: [@twitterhandle](https://twitter.com/abelteferabelay)
- LinkedIn: [LinkedIn](https://linkedin.com/in/abel-tefera-b1b625153)

<p align="right">(<a href="#readme-top">back to top</a>)</p>

## 🤝 Contributing <a name="contributing"></a>

Contributions, issues, and feature requests are welcome!

Feel free to check the [issues page](../../issues/).

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- SUPPORT -->

## ⭐️ Show your support <a name="support"></a>

> Write a message to encourage readers to support your project

If you like this project, please star it.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

<!-- ACKNOWLEDGEMENTS -->

## 🙏 Acknowledgments <a name="acknowledgements"></a>

> Give credit to everyone who inspired your codebase.

I would like to thank the Microverse community for giving me the opportunity to work on the cirriculum.

<p align="right">(<a href="#readme-top">back to top</a>)</p>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the case of README consider not leaving any of the sections in the Microverse README template as it's a project requirement.

  • The only optional section is FAQ.
  • Make sure the to add section Future Features, including 1-3 potential features to be added.

README.md Outdated

## 📝 License <a name="license"></a>

This project is [MIT](./LICENSE) licensed.
Copy link

@ABDULALI3468 ABDULALI3468 Feb 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your README link to your MIT LICENSE file is not working and showing a 404 ERROR as there is no LICENSE file in your repo. Consider adding one.

image

HOW TO ADD LICENSE:-

Check the following Link to understand how to add LICENSE to your GitHub repo.

Copy link

@AlphaNtihinduka AlphaNtihinduka left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

STATUS: APPROVED 🟢 👏

Hi @abel-tefera 🙋‍♂️,

Your project is complete! There is nothing else to say other than... Great job 👏

approved-accepted

Congratulations! 🎉
TO HIGHLIGHT:

  • Your project is professional ✔️
  • Your repo is professional ✔️
  • Well-structured files ✔️
  • Professional README.md file 💯
  • No linter errors ✔️

Now you can merge this branch and move on 🥇

Optional suggestions

  • Kindly refer to the inline optional suggestions made. Ensure to apply them to have a professional project that suits recruiters' needs.

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

HAPPY CODING AND GOOD LUCK WITH THE COMING ONES 🤞 🍀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants