From 78fc1fc83c0ce085a31ca52c53c22271205f9647 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 29 Jan 2026 21:43:26 +0000 Subject: [PATCH 1/3] Initial plan From 0570bc3b83c82118b059e0f751619dcc803e26b9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 29 Jan 2026 21:44:37 +0000 Subject: [PATCH 2/3] Add starter README and .gitignore for WEB 430 course Co-authored-by: rrkrasso <5224040+rrkrasso@users.noreply.github.com> --- .gitignore | 39 +++++++++++++++++++++++++++++++++++++++ README.md | 26 ++++++++++++++++++++++++-- 2 files changed, 63 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f0d46a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# Node.js dependencies +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +package-lock.json + +# JavaScript build outputs +dist/ +build/ +*.min.js +*.bundle.js + +# Environment variables +.env +.env.local +.env.*.local + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# YAML temporary files +*.yaml.bak +*.yml.bak +*.yaml~ +*.yml~ + +# Logs +logs/ +*.log + +# Coverage and test outputs +coverage/ +.nyc_output/ diff --git a/README.md b/README.md index 136fd3c..91ed23a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,24 @@ -# web-430 -GitHub Repository for WEB 430 DevOps +# WEB 430 - DevOps + +## Course Description +This repository contains coursework and projects for WEB 430 - DevOps course. + +## Repository Structure +This repository will be organized by weeks and assignments as the course progresses. + +## Getting Started +1. Clone this repository +2. Navigate to the appropriate week or assignment folder +3. Follow the instructions in each assignment's README + +## Technologies +- Node.js +- JavaScript +- YAML +- Other DevOps tools and technologies as covered in the course + +## Author +Bellevue University WEB 430 Student + +## License +See LICENSE file for details From e35396d8d988a9a3879ee119dd3e87858a876c0f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 29 Jan 2026 21:45:25 +0000 Subject: [PATCH 3/3] Remove package-lock.json from .gitignore to follow best practices Co-authored-by: rrkrasso <5224040+rrkrasso@users.noreply.github.com> --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index f0d46a2..cf37069 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ node_modules/ npm-debug.log* yarn-debug.log* yarn-error.log* -package-lock.json # JavaScript build outputs dist/