From 528a5fda003222bc9540ef7579047dbe9b36dc10 Mon Sep 17 00:00:00 2001 From: SJ Dev Date: Mon, 26 Jun 2023 11:32:32 -0400 Subject: [PATCH 1/3] Add gitignore file Base gitignore file that will ignore the system specific files for MacOS adapted from the gitignore globals --- .gitignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d22b34e --- /dev/null +++ b/.gitignore @@ -0,0 +1,30 @@ +# General +.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# Local environment files +.env.local +.env.production.local \ No newline at end of file From ec1ac35365e20a2bdb68c0ce161701eca6b0ce84 Mon Sep 17 00:00:00 2001 From: SJ Dev Date: Mon, 26 Jun 2023 11:34:23 -0400 Subject: [PATCH 2/3] Add local environment vars Local enironment variables for the project to work --- 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 4cd420742b4453d53bebeabb9208e8950da0c784 Mon Sep 17 00:00:00 2001 From: SJ Dev Date: Mon, 26 Jun 2023 11:35:58 -0400 Subject: [PATCH 3/3] Add h2 h2 styles with color blue added --- styles.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/styles.css b/styles.css index e69de29..ee607d9 100644 --- a/styles.css +++ b/styles.css @@ -0,0 +1,3 @@ +h2 { + color: blue; +} \ No newline at end of file