From 782bf363b42476f502a2f55779e972a13cfb6015 Mon Sep 17 00:00:00 2001 From: mayukh18 Date: Sat, 21 Oct 2017 12:55:46 +0530 Subject: [PATCH 1/4] added deploy to heroku button --- README.md | 2 ++ app.json | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 app.json diff --git a/README.md b/README.md index 9b827e4a..4ff5b6ca 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,8 @@ For each type of obstacles there is a different action, and different points. See [examples/README](examples/README) for explanation on how to write a driver module. +[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) + ## Requirements diff --git a/app.json b/app.json new file mode 100644 index 00000000..d4b344a0 --- /dev/null +++ b/app.json @@ -0,0 +1,6 @@ +{ + "name": "ROSE", + "description": "This project is a game that has been developed in order to help teach kids python. The students need to code the behavior of the car in order to achieve the best score.", + "repository": "https://github.com/RedHat-Israel/ROSE", + "keywords": ["race", "game", "python"] +} \ No newline at end of file From 225dd66ee9b543c7d86bbbede615651a520bc8de Mon Sep 17 00:00:00 2001 From: mayukh18 Date: Sat, 21 Oct 2017 12:58:59 +0530 Subject: [PATCH 2/4] description to app.json was too long --- app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.json b/app.json index d4b344a0..e3749d56 100644 --- a/app.json +++ b/app.json @@ -1,6 +1,6 @@ { "name": "ROSE", - "description": "This project is a game that has been developed in order to help teach kids python. The students need to code the behavior of the car in order to achieve the best score.", + "description": "ROSE project car race game.", "repository": "https://github.com/RedHat-Israel/ROSE", "keywords": ["race", "game", "python"] } \ No newline at end of file From 8359ec706a17051570c7f3f3a25cbe638563cb16 Mon Sep 17 00:00:00 2001 From: mayukh18 Date: Sun, 22 Oct 2017 00:54:35 +0530 Subject: [PATCH 3/4] add procfile --- Procfile | 1 + 1 file changed, 1 insertion(+) create mode 100644 Procfile diff --git a/Procfile b/Procfile new file mode 100644 index 00000000..2becdf34 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: python rose-server \ No newline at end of file From 09099b26c27034527dc526f2794fb9ca7131ad77 Mon Sep 17 00:00:00 2001 From: mayukh18 Date: Sun, 22 Oct 2017 01:04:13 +0530 Subject: [PATCH 4/4] add runtime.txt --- runtime.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 runtime.txt diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 00000000..2ce112e3 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-2.7.14 \ No newline at end of file