Skip to content

aman34503/Go-Airbnb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Airbnb

GitHub stars GitHub forks GitHub watchers Repo. Size GitHub Maintained PRs Welcome

GitHub contributors GitHub Closed issues GitHub PR Open GitHub PR closed GitHub language count GitHub top language GitHub last commit

A beginner friendly project to help you in open source contributions. An attempt to bring all together. @jwoc Also Part of @Hacktoberfest'21

<br />

Visit the Official Website »
Report Bug · Request Feature

An Airbnb clone web application would be a platform that allows users to find and book accommodations for their travel needs. The project would involve building a website that functions similarly to Airbnb, where users can search for listings based on their destination, check-in and check-out dates, number of guests, and other filters. The application would have two main user types: hosts and guests. Hosts would be able to create listings for their properties, including descriptions, photos, availability calendars, and pricing information. Guests would be able to search for and book listings, communicate with hosts, and leave reviews for their stays.

Table of Contents :

(Bottom)


Overview

The goal of this project is to help the beginners with their contributions in Open Source and bring all the possible Frontend (UI) knowledge all together. We aim to achieve this collaboratively, so feel free to contribute in any way you want, just make sure to follow the contribution guidelines.

Tech-Stack used :

HTML 5 CSS3 Javascript React MaterialUI BootStrap

(back to top)

What is Open Source?

The open source community provides a great opportunity for aspiring programmers to distinguish themselves; and by contributing to various projects, developers can improve their skills and get inspiration and support from like-minded people. When you contribute to something you already know and love, it can have so much more meaning, because you know how the tool is used and the good it does for you. Being part of an open source community opens you up to a broader range of people to interact with.

Read more about it here.

(back to top)

Open Source programs this repo has been part of



(back to top)

Contribution Guidelines

Step 1.

  • Create a Copy of this Repository, In order to work on an open-source project, you will first need to make your own copy of the repository. To do this, you should fork the repository and then clone it so that you have a local working copy.

Fork 🍴 this repo. Click on the Fork button at the top right corner. With the repository forked, you’re ready to clone it so that you have a local working copy of the code base.

Clone the Repository To make your own local copy of the repository you would like to contribute to, let’s first open up a terminal window.

We’ll use the git clone command along with the URL that points to your fork of the repository.

  • Open the Command Prompt
  • Type this command:
git clone https://github.com/your_username/Go-Airbnb

Step 2:

  • Creating a New Branch, It is important to branch the repository so that you are able to manage the workflow, isolate your code, and control what features make it back to the main branch of the project repository.

When creating a branch, it is very important that you create your new branch off of the master branch. To create a new branch, from your terminal window, follow:

git branch new-branch
git checkout new-branch

Once you enter the git checkout command, you will receive the following output:

Switched to branch 'new-branch'

Step 3:

  • Contribute, Make relevant changes. Add new algorithms. Add Readme files. Contribute in any way you feel like :)

Step 4:

  • Commiting and Pushing, Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which we can do with the git add command.

git add filename or git add . You can type the command git add -A or alternatively git add -all for all new files to be staged. With our file staged, we’ll want to record the changes that we made to the repository with the git commit command.

The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is.

git commit -m "commit message"

At this point you can use the git push command to push the changes to the current branch of your forked repository:

git push --set-upstream origin new-branch

Step 5:

  • Create Pull Request, At this point, you are ready to make a pull request to the original repository.

(back to top)

Contributors

Thanks to all the people who contribute

Contributors



(back to top)

Feedback

If you have any feedback or suggestions please reach out to maintainers.

Or you can create a issue and mention there , which features can make this Project more good.



Show some ❤️ by starring this awesome Repository!