From 4b6b0abc5c0fb2e098682869e3f55480b5dd5207 Mon Sep 17 00:00:00 2001 From: jetstream0 Date: Wed, 11 Dec 2019 02:27:26 +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/@rediar/flask-api-starter-kit-1). --- .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 0000000..d02e501 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "python test/__init__.py" diff --git a/README.md b/README.md index 54e534a..7810406 100755 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Flask Api Starter Kit [![CircleCI](https://circleci.com/gh/antkahn/flask-api-starter-kit/tree/master.svg?style=svg)](https://circleci.com/gh/antkahn/flask-api-starter-kit/tree/master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/antkahn/flask-api-starter-kit/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/antkahn/flask-api-starter-kit/?branch=master) - +[![Run on Repl.it](https://repl.it/badge/github/antkahn/flask-api-starter-kit)](https://repl.it/github/antkahn/flask-api-starter-kit) This starter kit is designed to allow you to create very fast your Flask API. The primary goal of this project is to remain as **unopinionated** as possible. Its purpose is not to dictate your project structure or to demonstrate a complete sample application, but to provide a set of tools intended to make back-end development robust, easy, and, most importantly, fun.