GitBuddy is an iOS application built using UIKit that helps users fetch and view the profile and followers of any GitHub user. Users can save their favorite profiles with persistence, and the app uses the GitHub API to retrieve data. The codebase is well-structured with proper modularity.
- View GitHub user profiles
- Fetch and display followers of a GitHub user
- Save favorite profiles
- Persistent storage of favorite profiles
- Clean and modular codebase
- iOS 13.0+
- Xcode 11.0+
- Swift 5.0+
-
Clone the repository:
git clone https://github.com/yourusername/GitBuddy.git
-
Navigate to the project directory:
cd GitBuddy -
Open the project in Xcode:
open GitBuddy.xcodeproj
-
Build and run the project in Xcode.
- Launch the app on your iOS device or simulator.
- Enter the GitHub username you want to search for.
- View the profile and followers of the user.
- Save profiles to your favorites for quick access later.
Watch the YouTube demo video to see GitBuddy in action.
GitBuddy uses the GitHub API to fetch user profiles and followers.
GET /users/{username}- Fetches the profile of a GitHub user.GET /users/{username}/followers- Fetches the followers of a GitHub user.
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch:
git checkout -b feature/your-feature-name
- Make your changes and commit them:
git commit -m 'Add some feature' - Push to the branch:
git push origin feature/your-feature-name
- Create a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.