From b23135fa50f352b1ed8beeb2a8e4f512015e7408 Mon Sep 17 00:00:00 2001 From: woodjosh256 Date: Wed, 11 Dec 2019 04:03:47 +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/@joshwood/Game). --- .replit | 2 ++ README | 1 + 2 files changed, 3 insertions(+) create mode 100644 .replit diff --git a/.replit b/.replit new file mode 100644 index 0000000..df532a5 --- /dev/null +++ b/.replit @@ -0,0 +1,2 @@ +language = "python3" +run = "python main.py" diff --git a/README b/README index eff578f..f5a5dfb 100644 --- a/README +++ b/README @@ -1,2 +1,3 @@ # Description A basic text adventure game, written entirely for the purpose of me learning Python. +[![Run on Repl.it](https://repl.it/badge/github/Transcriptase/Game)](https://repl.it/github/Transcriptase/Game) \ No newline at end of file