From ee035f18ec77fa4aabd3acf5702d247d1a522b2d Mon Sep 17 00:00:00 2001 From: Jacob Flory Date: Sun, 15 Dec 2024 14:43:36 -0500 Subject: [PATCH 1/4] Create gitignore and local environment files Creates a git ignore file and loval environment files. Adds required information into said files to exclude sensitive data --- .gitignore | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95d178d --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Ignore OS-specific files +.DS_Store +Thumbs.db +desktop.ini + +# Ignore sensitive data files +.env.local +.env.production.local + +# IgnoreIDE and editor-specific files +.vscode/ +*.suo +*.user + +# Ignore logs +*.logs + +# Ignore build tools +dist/ +build/ \ No newline at end of file From c61420a600d9badca9c7c0c7dedff59d3c431e4c Mon Sep 17 00:00:00 2001 From: Jacob Flory Date: Sun, 15 Dec 2024 14:51:51 -0500 Subject: [PATCH 2/4] Create and update app.js Creates app.js file and adds required code --- app.js | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 app.js diff --git a/app.js b/app.js new file mode 100644 index 0000000..e69de29 From 7c89b055574324645471e44382286168ab3643aa Mon Sep 17 00:00:00 2001 From: Jacob Flory Date: Sun, 15 Dec 2024 14:54:29 -0500 Subject: [PATCH 3/4] Create and update styles.css Creates styles.css and adds required code --- styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/styles.css b/styles.css index e69de29..aeb3a89 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1 @@ +h2 {color: blue; } \ No newline at end of file From 86598936eb373141d9b55a803586ed64b630952b Mon Sep 17 00:00:00 2001 From: Jacob Flory Date: Sun, 15 Dec 2024 14:54:54 -0500 Subject: [PATCH 4/4] Create and update app.js Creates app.js file and adds required code --- app.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app.js b/app.js index e69de29..67e979e 100644 --- a/app.js +++ b/app.js @@ -0,0 +1,2 @@ +var loveToCode = true; +var BUG_TRACKING_DNS = ProcessingInstruction.env.production.local; \ No newline at end of file