From 5e3ea875f336ec0a27299b0e8966c654893b99ec Mon Sep 17 00:00:00 2001 From: jetstream0 Date: Wed, 11 Dec 2019 01:59:40 +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-boilerplate). --- .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..183224da --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "python app.py" diff --git a/README.md b/README.md index a30c837e..8b483cbf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) - +[![Run on Repl.it](https://repl.it/badge/github/realpython/flask-boilerplate)](https://repl.it/github/realpython/flask-boilerplate) ## Welcome Hello. Want to get started with Flask quickly? Good. You came to the right place. This Flask application framework is pre-configured with **Flask-SQLAlchemy**, **Flask-WTF**, **Fabric**, **Coverage**, and the **Bootstrap** frontend (among others). This will get your Flask app up and running on Heroku or PythonAnywhere quickly. Use this starter, boilerplate for all you new Flask projects. Cheers!