All Projects → euhidaman → Fake_APIs

euhidaman / Fake_APIs

Licence: MIT License
Beginner friendly Custom REST-APIs creation for various development and testing purposes.🎯🌎This project has been opened for Contributions for Hacktoberfest2021.

Projects that are alternatives of or similar to Fake APIs

Hacktoberfest-2021
This repository aims to help code beginners with their first successful pull request and open source contribution. 🥳🎯🚀
Stars: ✭ 24 (+41.18%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
Learn-To-Use-Github
Wanna Learn How to use github ? come on in
Stars: ✭ 68 (+300%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
HACKTOBERFEST2021 INSPIRATION
😎A Hacktoberfest-2021 Contribution Repository For Beginners😎...Simplest Repo for Beginners👨‍💻👨‍💻👨‍💻...Add your Profile Details, Photo and Inspirational Quote 🙌🙌🙌& There you go to do your first PR❤❤❤
Stars: ✭ 30 (+76.47%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
HacktoberFest 2021
Hacktoberfest 2021 contribution repository✨
Stars: ✭ 43 (+152.94%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
Repo-Excluded-From-HacktoberFest-2021
Know a bit of python & need pr for hacktoberfest ? come join us in the journey
Stars: ✭ 17 (+0%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-Nepal-2020
A beginner-friendly open source repository to create your first pull request.
Stars: ✭ 15 (-11.76%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
DSA
Implementation of various data structures and algorithms.
Stars: ✭ 15 (-11.76%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
mac-dev-setup
An easy script to install your mac dev environment
Stars: ✭ 38 (+123.53%)
Mutual labels:  development, easy, beginner-friendly
HacktoberFest21
A beginner friendly repository for HacktoberFest 2021
Stars: ✭ 45 (+164.71%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
Heel2Toe
A beginner-friendly repository to get started with HTML, CSS, and JS.
Stars: ✭ 22 (+29.41%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
HacktoberFest-21
A mentorship initiative to help beginners kickstarting their open-source journey by completing Hacktoberfest'21 challenge | Curated list of beginner-friendly issues for Hacktoberfest 2021 | Raise PR to add your issues
Stars: ✭ 27 (+58.82%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest2021-DSA
If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Stars: ✭ 232 (+1264.71%)
Mutual labels:  beginner-friendly, hacktoberfest-accepted, hacktoberfest2021
weatherbes-android
An open sourced Weather App made using OpenWeatherMapAPI
Stars: ✭ 23 (+35.29%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Let-Us-Java
[Hacktoberfest 2021] Any amazing 🔥 💯 code you may think of in Java, Let's compile all of them here
Stars: ✭ 39 (+129.41%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
hacktoberfest36 2021
Hacktober Fest 2021 is live. Contribute your projects.
Stars: ✭ 43 (+152.94%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
github-fest-2021
No description or website provided.
Stars: ✭ 44 (+158.82%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest 2021
all valid pull requests accepted!!
Stars: ✭ 23 (+35.29%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
FB-Ads-Opt-UCB
The easiest way to optimize Facebook Ads using Upper Confidence Bound Algorithm. 💻
Stars: ✭ 23 (+35.29%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
To-Do-List
To-Do-List javascript project
Stars: ✭ 13 (-23.53%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
kartik python
It's my python repository, where I upload various python projects using many kinds of modules from tkinter to opencv to pygames. It's very fun to code them :)
Stars: ✭ 14 (-17.65%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021

Fake_APIs

Custom REST APIs for various development and testing purposes.

This repository is for anyone around the globe who wants to start creating their own REST API, for their own development, or for helping create an aggregate of unrelated data . The purpose of this repository is to learn and share knowledge.

Prerequisite

Git & Github

Here, we have mentioned the instructions to set up git. If you don't already know what Git is, check out this blog series on iRead.

  • Login / Sign-up to Github.
  • Download and install Git.
  • Configure git
    • Launch terminal or command promt.
    • Run the commands.
      • git config --global user.name "Your name"
      • git config --global user.email "Your email address"
  • Optionally, you can setup ssh keys to authenticate easily.

What to Contribute

You are free to select any topic such as Dogs, Cats, Projects, Cars, Foods etc. Your contribution must be information in JSON format about your selected topic. Just make sure to follow the below guidelines strictly.

How to contribute?

Refer to Contributing Guidelines to learn how to setup the repository.

Once you are ready with the setup, follow the below guidelines:

  1. Create a file inside this project repository with the Topic Name in snake case, i.e., if your topic is Car Details, the file name should be car_details.json.
  2. The file should be in the following format :
{
    "DUMMY_DATA_INFO": [
        {
            "id": 1,
            "info1": "DUMMY_DATA1",
            "info2": "DUMMY_DATA2",
            "info3": "DUMMY_LINK3",
            "info4": "DUMMY_DATA4",
        },
        {
            "id": 2,
            "info_1": "1_DUMMY_DATA1",
            "info_2": "2_DUMMY_DATA2",
            "info_3": "3_DUMMY_LINK3",
            "info_4": "4_DUMMY_DATA4",
        },
    ]
}
  1. After creating the file and adding the necessary data in JSON format, stage and commit the changes.
  2. Finally, push the changes and create a pull request.

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].