XMEME is a web-app which allow the user to post meme by name,url caption and also to fetch the meme by id or whole. XMEME is a RESTFUL API which allow to use the endpoints to consume the resources. :arrow_right: Live :beers:rohit-backend 🍻
-
GET : To fetch all the Meme
-
POST : To Post a single meme
-
PATCH : To update the existing meme by url , captions
-
GET by id : To fetch the meme by id
@app.route("/memes", methods=['GET', 'POST']) @app.route("/memes/<int:id>", methods=["GET", "PATCH"])
-
Clone the repository by using Git Client:
git clone https://github.com/palrohitg/XMeme.git
-
Run the test_server.sh file if you have
chmod +x test_server.sh sh test_server.sh
-
It will run install.sh and server_run.sh
sh install.sh sh server.sh