From ecf460e43c846a18ad922bea8316ab0b2994eb46 Mon Sep 17 00:00:00 2001 From: Piero Maddaleni Date: Tue, 10 Dec 2019 18:51:21 +0000 Subject: [PATCH] Add run on repl.it badge to README This pull request configures this repository to be run on Repl.it. It adds a `.replit` configuration file and a Repl.it badge to the `README`. You can read more about running repos on Repl.it [here](https://docs.repl.it/repls/dot-replit), or view the Repl [here](https://repl.it/@pieromqwerty/flask-restplus-server-example). --- .replit | 2 ++ README.md | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 00000000..890feba1 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "python server.py" diff --git a/README.md b/README.md index b24a8906..e860ac2c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Codacy Coverage Status](https://api.codacy.com/project/badge/coverage/b0fc91ce77d3437ea5f107c4b7ccfa26)](https://www.codacy.com/app/frolvlad/flask-restplus-server-example) [![Codacy Quality Status](https://api.codacy.com/project/badge/grade/b0fc91ce77d3437ea5f107c4b7ccfa26)](https://www.codacy.com/app/frolvlad/flask-restplus-server-example) [![Heroku](http://heroku-badge.herokuapp.com/?app=flask-restplus-example-server&root=api/v1/&style=flat&svg=1)](http://flask-restplus-example-server.herokuapp.com/api/v1/) - +[![Run on Repl.it](https://repl.it/badge/github/frol/flask-restplus-server-example)](https://repl.it/github/frol/flask-restplus-server-example) RESTful API Server Example ==========================