From 74ac17a976ffd51277c69ac0d8798f86901e7a6a Mon Sep 17 00:00:00 2001 From: Fahmi Rafie <20251573+fahmirafie@users.noreply.github.com> Date: Tue, 9 Nov 2021 23:36:19 -0600 Subject: [PATCH 1/3] added skeleton --- app.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 app.py diff --git a/app.py b/app.py new file mode 100644 index 0000000..c0b289f --- /dev/null +++ b/app.py @@ -0,0 +1,7 @@ +from flask import Flask + +app= Flask(__name__) + +@app.route("/") +def get_index(): + return "Hello from Flask" \ No newline at end of file From 9a666d06e57228ca57195901316fd5fa295f3c3e Mon Sep 17 00:00:00 2001 From: Fahmi Rafie <20251573+fahmirafie@users.noreply.github.com> Date: Mon, 13 Dec 2021 19:34:38 -0600 Subject: [PATCH 2/3] Added ed25519 SSH key support --- Vagrantfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 45f7fc2..d2abddc 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -52,6 +52,10 @@ Vagrant.configure("2") do |config| if File.exists?(File.expand_path("~/.ssh/id_rsa")) workshop.vm.provision "file", source: "~/.ssh/id_rsa", destination: "~/.ssh/id_rsa" end + + if File.exists?(File.expand_path("~/.ssh/id_ed25519")) + workshop.vm.provision "file", source: "~/.ssh/id_ed25519", destination: "~/.ssh/id_ed25519" + end # Copy your .vimrc file so that your VI editor looks nice if File.exists?(File.expand_path("~/.vimrc")) From c43a1e88ecd4f7861c311ec157e085b50b200904 Mon Sep 17 00:00:00 2001 From: Fahmi Rafie <20251573+fahmirafie@users.noreply.github.com> Date: Mon, 13 Dec 2021 19:48:59 -0600 Subject: [PATCH 3/3] Removed app.py --- app.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 app.py diff --git a/app.py b/app.py deleted file mode 100644 index c0b289f..0000000 --- a/app.py +++ /dev/null @@ -1,7 +0,0 @@ -from flask import Flask - -app= Flask(__name__) - -@app.route("/") -def get_index(): - return "Hello from Flask" \ No newline at end of file