From 57593a6f34701c0f6f3a3df4d31f5bef9c6b0a37 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Sep 2024 18:55:21 -0800 Subject: [PATCH 1/3] feature/bug-tracking--new commit added to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e6905a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env* \ No newline at end of file From 0229b9d77918e6c36ae1482be0fa37f0312d4848 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Sep 2024 19:00:18 -0800 Subject: [PATCH 2/3] feature/bug-tracking--created app.js and .env.production.local --- app.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 app.js diff --git a/app.js b/app.js new file mode 100644 index 0000000..9756459 --- /dev/null +++ b/app.js @@ -0,0 +1,2 @@ +var loveToCode = true; +var BUG_TRACKING_DNS = process.env.production.local; \ No newline at end of file From 53f4d6797cd70bc5ac312aba2f9dbcb7c4b832c6 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 24 Sep 2024 19:02:14 -0800 Subject: [PATCH 3/3] feature/bug-tracking--created styles.css --- styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles.css b/styles.css index e69de29..a02764d 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1 @@ +h2 { color: blue; } \ No newline at end of file