From 1c0342de01722d5d0abf5da708c5881a48f81765 Mon Sep 17 00:00:00 2001 From: Kamran Bhagwan Date: Wed, 11 Dec 2019 22:28:13 +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/@KamranB519/PythonPlantsVsZombies-1). --- .replit | 2 ++ README.md | 1 + 2 files changed, 3 insertions(+) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 00000000..5f571bfe --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "bash" +run = "$ python main.py" diff --git a/README.md b/README.md index 91336d5b..29068801 100644 --- a/README.md +++ b/README.md @@ -20,3 +20,4 @@ $ python main.py ![demo1](https://raw.githubusercontent.com/marblexu/PythonPlantsVsZombies/master/demo/demo1.jpg) ![demo2](https://raw.githubusercontent.com/marblexu/PythonPlantsVsZombies/master/demo/demo2.jpg) +[![Run on Repl.it](https://repl.it/badge/github/marblexu/PythonPlantsVsZombies)](https://repl.it/github/marblexu/PythonPlantsVsZombies) \ No newline at end of file