diff --git a/.eslintrc.json b/.eslintrc.json index b3a4079..c708a1f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,33 +1,33 @@ -{ - "env": { - "browser": true, - "es2021": true, - "node": true - }, - "extends": "eslint:recommended", - "overrides": [ - ], - "parserOptions": { - "ecmaVersion": "latest", - "sourceType": "module" - }, - "rules": { - "indent": [ - "error", - "tab" - ], - "linebreak-style": [ - "error", - "unix" - ], - "quotes": [ - "error", - "double" - ], - "semi": [ - "error", - "always" - ], - "no-global-assign": 0 - } -} +{ + "env": { + "browser": true, + "es2021": true, + "node": true + }, + "extends": "eslint:recommended", + "overrides": [ + ], + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "indent": [ + "error", + "tab" + ], + "linebreak-style": [ + "error", + "unix" + ], + "quotes": [ + "error", + "double" + ], + "semi": [ + "error", + "always" + ], + "no-global-assign": 0 + } +} diff --git a/.github/workflows/css-linting.yml b/.github/workflows/css-linting.yml new file mode 100644 index 0000000..fae3b66 --- /dev/null +++ b/.github/workflows/css-linting.yml @@ -0,0 +1,23 @@ +name: CSS Linting + +on: + pull_request: + branches: + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + # Single deploy job since we're just deploying + test: + runs-on: ubuntu-latest + steps: + - name: Install apt updates + run: sudo apt -y update; sudo apt -y upgrade; + - name: Checkout + uses: actions/checkout@v3 + - name: Install dependencies + run: sudo npm install + - name: Run tests + run: sudo npm run lintCSS \ No newline at end of file diff --git a/.github/workflows/deploy-githubpages.yml b/.github/workflows/deploy-githubpages.yml index 83b8b93..4909524 100644 --- a/.github/workflows/deploy-githubpages.yml +++ b/.github/workflows/deploy-githubpages.yml @@ -1,43 +1,43 @@ -# Simple workflow for deploying static content to GitHub Pages -name: Deploy GitHub Pages - -on: - # Runs on pushes targeting the default branch - push: - branches: - - main - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - # Single deploy job since we're just deploying - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Pages - uses: actions/configure-pages@v2 - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - # Upload only the src repository - path: './source/' - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1 +# Simple workflow for deploying static content to GitHub Pages +name: Deploy GitHub Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload only the src repository + path: './source/' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 diff --git a/.github/workflows/html-linting.yml b/.github/workflows/html-linting.yml new file mode 100644 index 0000000..ab68590 --- /dev/null +++ b/.github/workflows/html-linting.yml @@ -0,0 +1,23 @@ +name: HTML Linting + +on: + pull_request: + branches: + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + # Single deploy job since we're just deploying + test: + runs-on: ubuntu-latest + steps: + - name: Install apt updates + run: sudo apt -y update; sudo apt -y upgrade; + - name: Checkout + uses: actions/checkout@v3 + - name: Install dependencies + run: sudo npm install + - name: Run tests + run: sudo npm run lintHTML diff --git a/.github/workflows/js-linting.yml b/.github/workflows/js-linting.yml index 10afcd7..f3aafaf 100644 --- a/.github/workflows/js-linting.yml +++ b/.github/workflows/js-linting.yml @@ -1,25 +1,25 @@ -name: JS Linting - -on: - pull_request: - branches: - - main - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - # Single deploy job since we're just deploying - test: - runs-on: ubuntu-latest - steps: - - name: Install apt updates - run: sudo apt -y update; sudo apt -y upgrade; - - name: Install prerequisites - run: sudo apt install -y nodejs npm; - - name: Checkout - uses: actions/checkout@v3 - - name: Install dependencies - run: sudo npm install - - name: Run tests +name: JS Linting + +on: + pull_request: + branches: + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + # Single deploy job since we're just deploying + test: + runs-on: ubuntu-latest + steps: + - name: Install apt updates + run: sudo apt -y update; sudo apt -y upgrade; + - name: Install prerequisites + run: sudo apt install -y nodejs npm; + - name: Checkout + uses: actions/checkout@v3 + - name: Install dependencies + run: sudo npm install + - name: Run tests run: sudo npm run lint \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4f2c69d..508f672 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ -**/.devcontainer/* -**/node_modules/* +**/.devcontainer/* +**/node_modules/* **/package-lock.json \ No newline at end of file diff --git a/.htmlhintrc b/.htmlhintrc new file mode 100644 index 0000000..edd263f --- /dev/null +++ b/.htmlhintrc @@ -0,0 +1,3 @@ +{ + "attr-value-not-empty": false +} diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..2f1eeda --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "stylelint-config-standard" +} \ No newline at end of file diff --git a/README.md b/README.md index 84748ab..4d9849e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# cse110-fa22-group29 +# cse110-fa22-group29 [Team Page Link](https://github.com/cse110-fa22-group29/cse110-fa22-group29/blob/main/admin/team.md) \ No newline at end of file diff --git a/admin/meetings/101122-kickoff.md b/admin/meetings/101122-kickoff.md index fdddd16..c77c288 100644 --- a/admin/meetings/101122-kickoff.md +++ b/admin/meetings/101122-kickoff.md @@ -1,47 +1,47 @@ -# Meeting Minutes (10/12/2022) -## Team 29: Hackers1995 -## Meeting Topic: Kickoff Meeting -This meeting is being held to kickoff the start of many meetings to come during the quarter. -## Attendance -1. Rhea Bhutada -2. George Dubinin -3. Gavyn Ezell -4. Henry Feng -5. Kara Hoagland -6. Marc Reta -7. Sanjit Joseph -8. Isaac Otero -9. Daniel Hernandez - -## Absentees -1. Arthur Lu - -## Meeting Details -- When: 10/12/2022 at 3:30PM -- Where: Zoom - -## Agenda: -- ### Old/Unresolved Business - - N/A -- ### New Business - - go over github organization - - review assignments - - go through rules - - start branding/team name -- ### Next Meeting's Business - - figure out roles - - decide weekly meeting times - - figure out team bonding events - - brainstorm CRUD applications - - complete any remaining assignments - -## Decisions Made -- went over github organizations and reviewed the assignments -- went through the rules and agreed on the contract -- figured out the brand name - -## End Time -- 10/12/2022 at 4:30PM - - - +# Meeting Minutes (10/12/2022) +## Team 29: Hackers1995 +## Meeting Topic: Kickoff Meeting +This meeting is being held to kickoff the start of many meetings to come during the quarter. +## Attendance +1. Rhea Bhutada +2. George Dubinin +3. Gavyn Ezell +4. Henry Feng +5. Kara Hoagland +6. Marc Reta +7. Sanjit Joseph +8. Isaac Otero +9. Daniel Hernandez + +## Absentees +1. Arthur Lu + +## Meeting Details +- When: 10/12/2022 at 3:30PM +- Where: Zoom + +## Agenda: +- ### Old/Unresolved Business + - N/A +- ### New Business + - go over github organization + - review assignments + - go through rules + - start branding/team name +- ### Next Meeting's Business + - figure out roles + - decide weekly meeting times + - figure out team bonding events + - brainstorm CRUD applications + - complete any remaining assignments + +## Decisions Made +- went over github organizations and reviewed the assignments +- went through the rules and agreed on the contract +- figured out the brand name + +## End Time +- 10/12/2022 at 4:30PM + + + diff --git a/admin/meetings/101222-checkin1.md b/admin/meetings/101222-checkin1.md index f9472dd..d31c903 100644 --- a/admin/meetings/101222-checkin1.md +++ b/admin/meetings/101222-checkin1.md @@ -1,32 +1,32 @@ -# Meeting Minutes (10/12/2022) -## Team 29: Hackers1995 -## Meeting Topic: Weekly Check-In Meeting -This meeting is the first weekly meeting with TA -## Attendance -1. Gagan Gopalaiah -2. Rhea Bhutada -3. Kara Hoagland -4. Marc Reta -5. Arthur - -## Meeting Details -- When: 10/12/2022 at 8:00PM -- Where: Zoom - -## Agenda: -- ### Reviewed Project Details - - building CRUD app - - utilizing HTML, CSS, JavaScript - - general domain is better than specific domain -- ### Get Started early - - brainstorm CRUD apps - - review assignments - - figure out unit test code - - familiarize yourself with GitHub Actions - -## Important Information -- Gagan OH (6:30PM-7:30PM on Wednesday) in CSE Basement -- Reserved the room if any of us want to meet there. TA not going to present unless required. - -## End Time +# Meeting Minutes (10/12/2022) +## Team 29: Hackers1995 +## Meeting Topic: Weekly Check-In Meeting +This meeting is the first weekly meeting with TA +## Attendance +1. Gagan Gopalaiah +2. Rhea Bhutada +3. Kara Hoagland +4. Marc Reta +5. Arthur + +## Meeting Details +- When: 10/12/2022 at 8:00PM +- Where: Zoom + +## Agenda: +- ### Reviewed Project Details + - building CRUD app + - utilizing HTML, CSS, JavaScript + - general domain is better than specific domain +- ### Get Started early + - brainstorm CRUD apps + - review assignments + - figure out unit test code + - familiarize yourself with GitHub Actions + +## Important Information +- Gagan OH (6:30PM-7:30PM on Wednesday) in CSE Basement +- Reserved the room if any of us want to meet there. TA not going to present unless required. + +## End Time - 10/12/2022 at 8:30PM \ No newline at end of file diff --git a/admin/meetings/101922-checkin2.md b/admin/meetings/101922-checkin2.md index dba60a5..5286bc1 100644 --- a/admin/meetings/101922-checkin2.md +++ b/admin/meetings/101922-checkin2.md @@ -1,50 +1,50 @@ -# Meeting Minutes (10/19/2022) -## Team 29: Hackers1995 -## Meeting Topic: Weekly Check-In Meeting -This meeting is the second weekly meeting with TA. - -## Attendance -1. Gagan Gopalaiah -2. Rhea Bhutada -3. George Dubinin -4. Kara Hoagland -5. Marc Reta -6. Arthur Lu -7. Gavyn Ezell -8. Isaac Otero - -## Meeting Details -- When: 10/19/2022 at 8:00PM -- Where: Zoom - -## Agenda: -- ### Recap of last week - - went over assignments - - discussed feelings on the midterm - -- ### New Potential Meeting Time - - without TA unless necessary - - before lecture on Monday in CSE Basement - -- ### Upcoming Assignments - - two coming up - - brainstorm activity (due 10/23) - - continue brainstorming throughout the week - - due sunday - - pitch (11/1) - - initial draft by 10/25 - 10/26 - -- ### Tips on Designing - - user center design - - define the problem first, then the tools/techniques - - finalize on the product and its features, then decide on how to build it - -- ### Standup - - not expected everyday - - once every two days is ideal - - doesn't have to be too descriptive - -- ### Review of Recent Brainstorming Session - -## End Time +# Meeting Minutes (10/19/2022) +## Team 29: Hackers1995 +## Meeting Topic: Weekly Check-In Meeting +This meeting is the second weekly meeting with TA. + +## Attendance +1. Gagan Gopalaiah +2. Rhea Bhutada +3. George Dubinin +4. Kara Hoagland +5. Marc Reta +6. Arthur Lu +7. Gavyn Ezell +8. Isaac Otero + +## Meeting Details +- When: 10/19/2022 at 8:00PM +- Where: Zoom + +## Agenda: +- ### Recap of last week + - went over assignments + - discussed feelings on the midterm + +- ### New Potential Meeting Time + - without TA unless necessary + - before lecture on Monday in CSE Basement + +- ### Upcoming Assignments + - two coming up + - brainstorm activity (due 10/23) + - continue brainstorming throughout the week + - due sunday + - pitch (11/1) + - initial draft by 10/25 - 10/26 + +- ### Tips on Designing + - user center design + - define the problem first, then the tools/techniques + - finalize on the product and its features, then decide on how to build it + +- ### Standup + - not expected everyday + - once every two days is ideal + - doesn't have to be too descriptive + +- ### Review of Recent Brainstorming Session + +## End Time - 10/19/2022 at 3:50PM \ No newline at end of file diff --git a/admin/meetings/102322-decision.md b/admin/meetings/102322-decision.md index ea828e5..bc64f86 100644 --- a/admin/meetings/102322-decision.md +++ b/admin/meetings/102322-decision.md @@ -1,40 +1,40 @@ -# Meeting Minutes (10/23/2022) -## Team 29: Hackers1995 -## Meeting Topic: Application Final Decision -This meeting is held to help the group decide on which kind of app to build. -## Attendance -1. George Dubinin -2. Henry Feng -3. Arthur Lu -4. Marc Reta -5. Kara Hoagland -6. Rhea Bhutada -7. Isaac Otero - -## Absentees -1. Sanjit Joseph -2. Gavyn Ezell -3. Daniel Hernandez - -## Meeting Details -- When: - - 10/23/2022 at 1:00PM -- Where: Zoom (Rhea's Meeting Room) - -## Agenda: -- ### Old/Unresolved Business - - N/A -- ### New Business - - Decide on a final app idea -- ### Next Meeting's Business - - Discuss design features for the chosen app - -## Decisions Made -- Maybe for the food reviewer app. Presenting possible writeup to Gagan -- Maybe for the resume builder. Presenting possible writeup to Gagan https://docs.google.com/document/d/1zdvVxd47Ivdz-D0rZGNJqc3D9GiQj0n_xMJKapOV39A/edit?usp=sharing -- Maybe for Social Media Local Archive. Presenting possible writeup to Gagan https://docs.google.com/document/d/1upNr6lneB2uzCoQ12_aa1CMg1W8p2NBFb6xmP7i4-z4/edit?usp=sharing -- No to the copy/paste app (not local first) - -## End Time -- When: - - 10/23/2022 at 2:00PM +# Meeting Minutes (10/23/2022) +## Team 29: Hackers1995 +## Meeting Topic: Application Final Decision +This meeting is held to help the group decide on which kind of app to build. +## Attendance +1. George Dubinin +2. Henry Feng +3. Arthur Lu +4. Marc Reta +5. Kara Hoagland +6. Rhea Bhutada +7. Isaac Otero + +## Absentees +1. Sanjit Joseph +2. Gavyn Ezell +3. Daniel Hernandez + +## Meeting Details +- When: + - 10/23/2022 at 1:00PM +- Where: Zoom (Rhea's Meeting Room) + +## Agenda: +- ### Old/Unresolved Business + - N/A +- ### New Business + - Decide on a final app idea +- ### Next Meeting's Business + - Discuss design features for the chosen app + +## Decisions Made +- Maybe for the food reviewer app. Presenting possible writeup to Gagan +- Maybe for the resume builder. Presenting possible writeup to Gagan https://docs.google.com/document/d/1zdvVxd47Ivdz-D0rZGNJqc3D9GiQj0n_xMJKapOV39A/edit?usp=sharing +- Maybe for Social Media Local Archive. Presenting possible writeup to Gagan https://docs.google.com/document/d/1upNr6lneB2uzCoQ12_aa1CMg1W8p2NBFb6xmP7i4-z4/edit?usp=sharing +- No to the copy/paste app (not local first) + +## End Time +- When: + - 10/23/2022 at 2:00PM diff --git a/admin/meetings/102622-checkin3.md b/admin/meetings/102622-checkin3.md index 7ca56ef..ae63c62 100644 --- a/admin/meetings/102622-checkin3.md +++ b/admin/meetings/102622-checkin3.md @@ -1,44 +1,44 @@ -# Meeting Minutes (10/26/2022) -## Team 29: Hackers1995 -## Meeting Topic: Weekly Check-In Meeting -This is our third weekly meeting with Gagan. - -## Attendance -TA. Gagan Gopalaiah -1. Rhea Bhutada -2. George Dubinin -3. Sanjit Joseph -4. Arthur Lu -5. Gavyn Ezell - -## Meeting Details -- When: 10/26/2022 at 3:00 PM -- Where: Zoom (Gagan's Zoom room: https://ucsd.zoom.us/j/5177090642) - -## Agenda: -- ### Present our ideas to Gagan - - All ideas seem to be doable - - Consider a few tweaks to "CRUDify" apps - - Gagan is partial to food review app idea, but any of them can work - - -- ### Tips for projects - - SOCIAL MEDIA ORGANIZER: avoid API integration if possible/only make it a small part, not a main feature - - RESUME BUILDER: try to "CRUDify" it more if we're going for this - -- ### Standups - - Once per 2 days, 3 in worst case - - Perhaps make a separate slack channel for these to avoid clutter - -## Moving forward: -- ### BY FRIDAY: - - Try and meet tomorrow (10/27) to make a final decision - - Let Gagan know what we've decided on - - Complete project pitch assignment - need to present to Gagan tomorrow 10/27, due on canvas 11/1 - -- ### OVER WEEKEND: - - (If possible) Start on CI/CD pipeline (basic js app/unit tests, use Github actions to set up) - - -## End Time -- 10/26/2022 at 4:00 PM +# Meeting Minutes (10/26/2022) +## Team 29: Hackers1995 +## Meeting Topic: Weekly Check-In Meeting +This is our third weekly meeting with Gagan. + +## Attendance +TA. Gagan Gopalaiah +1. Rhea Bhutada +2. George Dubinin +3. Sanjit Joseph +4. Arthur Lu +5. Gavyn Ezell + +## Meeting Details +- When: 10/26/2022 at 3:00 PM +- Where: Zoom (Gagan's Zoom room: https://ucsd.zoom.us/j/5177090642) + +## Agenda: +- ### Present our ideas to Gagan + - All ideas seem to be doable + - Consider a few tweaks to "CRUDify" apps + - Gagan is partial to food review app idea, but any of them can work + + +- ### Tips for projects + - SOCIAL MEDIA ORGANIZER: avoid API integration if possible/only make it a small part, not a main feature + - RESUME BUILDER: try to "CRUDify" it more if we're going for this + +- ### Standups + - Once per 2 days, 3 in worst case + - Perhaps make a separate slack channel for these to avoid clutter + +## Moving forward: +- ### BY FRIDAY: + - Try and meet tomorrow (10/27) to make a final decision + - Let Gagan know what we've decided on + - Complete project pitch assignment - need to present to Gagan tomorrow 10/27, due on canvas 11/1 + +- ### OVER WEEKEND: + - (If possible) Start on CI/CD pipeline (basic js app/unit tests, use Github actions to set up) + + +## End Time +- 10/26/2022 at 4:00 PM diff --git a/admin/meetings/102722-final_decision.md b/admin/meetings/102722-final_decision.md index 081fe08..cf9ec04 100644 --- a/admin/meetings/102722-final_decision.md +++ b/admin/meetings/102722-final_decision.md @@ -1,60 +1,60 @@ -# Meeting Minutes (10/27/2022) -## Team 29: Hackers1995 -## Meeting Topic: Final Project Decision -We're figuring out what project we're going to do, and figure out what we need for the starting pitch. - -## Attendance -1. Rhea Bhutada -2. Sanjit Joseph -3. Arthur Lu -4. Henry Feng -5. Marc Reta -6. Kara Hoagland -7. Daniel Hernandez -8. Gavyn Ezell -9. Isaac Otero - -## Meeting Details -- When: 10/27/2022 at 5:00 PM -- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) - -## Agenda: -- ### Decide which project we're doing - - Gagan seemed to like the food review app idea best in their current states - - We all seem to agree that the food review app is acceptable - - Made a couple clarifications, no major changes or objections to the app - -- ### Start project pitch - - Created google slides: **https://docs.google.com/presentation/d/1_XWihJGVChFtYS38RnYJtQUuFKsgvewOCOkdeMHFRg4/edit?usp=sharing** - - Prof recommends skimming the book: **https://basecamp.com/shapeup** (esp. ch.5 on risks and rabbit holes) - - Finishing Risks + Rabbit holes here in the meeting - - Kara posted a design prototype in Slack: https://cse110fall2022.slack.com/archives/C04598WA7P1/p1666918573779859 - -- ### App Description - - Renaming it to a "Food Diary" app, not limited to UCSD - - Allows users to store info about recent foods, restaurant name, location, price, your rating etc. - - Probably provides food suggestions based on where you've eaten (and liked) before - - We're not going to try anything with external data atm. - - -## Moving forward: -- ### BY TOMORROW: - - FINISH PITCH SLIDES - - MUST CHANGE DIAGRAM TO ALL RESTAURANTS (Isaac will change this) - - Daniel will update the pitch slides by adding images/graphics. - - Daniel + Sanjit are doing visual representation. - - Gayvn is doing potential competitors - - Henry, Sanjit, Kara are doing user personas - - Rhea is doing statement + purpose - - Arthur + Marc are doing "why it's a CRUD app" - - - See if we can have a short meeting tomorrow before meeting Gagan just to review our pitch. - - Put all components in specs folder before pitch - - Meet at 2:30? Meeting with Gagan is probably at 3:30 - -- ### LATER: - - Have some people split off and work on the basic UI design. Technically Sanjit had the 'art role' according to the TA but not sure what that entails. More ppl would def be helpful. TBD who else is helping - - -## End Time -- 10/27/2022 at 6:15 PM +# Meeting Minutes (10/27/2022) +## Team 29: Hackers1995 +## Meeting Topic: Final Project Decision +We're figuring out what project we're going to do, and figure out what we need for the starting pitch. + +## Attendance +1. Rhea Bhutada +2. Sanjit Joseph +3. Arthur Lu +4. Henry Feng +5. Marc Reta +6. Kara Hoagland +7. Daniel Hernandez +8. Gavyn Ezell +9. Isaac Otero + +## Meeting Details +- When: 10/27/2022 at 5:00 PM +- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) + +## Agenda: +- ### Decide which project we're doing + - Gagan seemed to like the food review app idea best in their current states + - We all seem to agree that the food review app is acceptable + - Made a couple clarifications, no major changes or objections to the app + +- ### Start project pitch + - Created google slides: **https://docs.google.com/presentation/d/1_XWihJGVChFtYS38RnYJtQUuFKsgvewOCOkdeMHFRg4/edit?usp=sharing** + - Prof recommends skimming the book: **https://basecamp.com/shapeup** (esp. ch.5 on risks and rabbit holes) + - Finishing Risks + Rabbit holes here in the meeting + - Kara posted a design prototype in Slack: https://cse110fall2022.slack.com/archives/C04598WA7P1/p1666918573779859 + +- ### App Description + - Renaming it to a "Food Diary" app, not limited to UCSD + - Allows users to store info about recent foods, restaurant name, location, price, your rating etc. + - Probably provides food suggestions based on where you've eaten (and liked) before + - We're not going to try anything with external data atm. + + +## Moving forward: +- ### BY TOMORROW: + - FINISH PITCH SLIDES + - MUST CHANGE DIAGRAM TO ALL RESTAURANTS (Isaac will change this) + - Daniel will update the pitch slides by adding images/graphics. + - Daniel + Sanjit are doing visual representation. + - Gayvn is doing potential competitors + - Henry, Sanjit, Kara are doing user personas + - Rhea is doing statement + purpose + - Arthur + Marc are doing "why it's a CRUD app" + + - See if we can have a short meeting tomorrow before meeting Gagan just to review our pitch. + - Put all components in specs folder before pitch + - Meet at 2:30? Meeting with Gagan is probably at 3:30 + +- ### LATER: + - Have some people split off and work on the basic UI design. Technically Sanjit had the 'art role' according to the TA but not sure what that entails. More ppl would def be helpful. TBD who else is helping + + +## End Time +- 10/27/2022 at 6:15 PM diff --git a/admin/meetings/102822-project_pitch.md b/admin/meetings/102822-project_pitch.md index f75e893..d67e1ae 100644 --- a/admin/meetings/102822-project_pitch.md +++ b/admin/meetings/102822-project_pitch.md @@ -1,24 +1,24 @@ -# Meeting Minutes (10/28/2022) -## Team 29: Hackers1995 -## Meeting Topic: Project Pitch -We finished up the project pitch docs and presenting them to Gagan. - -Google slides: **https://docs.google.com/presentation/d/1_XWihJGVChFtYS38RnYJtQUuFKsgvewOCOkdeMHFRg4/edit?usp=sharing** - -## Meeting Details -- When: 10/28/2022 at 2:30 PM -- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) - -## Agenda: -- ### Finish Project Pitch documents - - Finished user stories/diagrams and uploaded to github - - Went over presentation before showing TA - - Presented project to Gagan - - **Overall reaction - he liked our app! More feedback to come, but we can feel free to start some basic work.** - -## Moving forward: -- I think we need to upload our project pitch to canvas by 11/1 -- Start on the really basic stuff as discussed in lecture (hello world for CI/CD setup, etc) - -## End Time -- 10/28/2022 at 4:00 PM +# Meeting Minutes (10/28/2022) +## Team 29: Hackers1995 +## Meeting Topic: Project Pitch +We finished up the project pitch docs and presenting them to Gagan. + +Google slides: **https://docs.google.com/presentation/d/1_XWihJGVChFtYS38RnYJtQUuFKsgvewOCOkdeMHFRg4/edit?usp=sharing** + +## Meeting Details +- When: 10/28/2022 at 2:30 PM +- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) + +## Agenda: +- ### Finish Project Pitch documents + - Finished user stories/diagrams and uploaded to github + - Went over presentation before showing TA + - Presented project to Gagan + - **Overall reaction - he liked our app! More feedback to come, but we can feel free to start some basic work.** + +## Moving forward: +- I think we need to upload our project pitch to canvas by 11/1 +- Start on the really basic stuff as discussed in lecture (hello world for CI/CD setup, etc) + +## End Time +- 10/28/2022 at 4:00 PM diff --git a/admin/meetings/110122-meeting.md b/admin/meetings/110122-meeting.md index 888e365..92e5186 100644 --- a/admin/meetings/110122-meeting.md +++ b/admin/meetings/110122-meeting.md @@ -1,41 +1,41 @@ -# Meeting Minutes (11/01/2022) -## Team 29: Hackers1995 -## Meeting Topic: Work going forward -We're trying to figure out what our goals are for the project and how to get started. - -## Meeting Details -- When: 11/01/2022 at 7:00 PM -- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) - -## Attendance - 1. Rhea - 2. Gavyn - 3. Isaac - 4. Kara - 5. Marc - 6. Henry - 7. Daniel - 8. Sanjit - -## Notes: - - Gagan suggests we have a feature backlog and pull stuff from that - - Using Github Issues for our feature backlog - - - Perhaps integrate TTS from Lab5 into something (pick a random restaurant while driving, etc) - - - Created figma sketch for app design, uploaded to github and google slides - -## Moving forward: -- ### BY TONIGHT: - - We'll submit our pitch files -- ### LATER: - - Sanjit will upload a basic hello world program in order to test deployment/github actions - - Arthur will start figuring out how to configure github actions - -- ### PREFERENCES: - - BACKEND: Henry, Gavyn, Kara - - FRONTEND: Isaac - - NO PREFERENCE: Daniel, Marc, Rhea, Sanjit - -## End Time -- 11/01/2022 at 9:00 PM +# Meeting Minutes (11/01/2022) +## Team 29: Hackers1995 +## Meeting Topic: Work going forward +We're trying to figure out what our goals are for the project and how to get started. + +## Meeting Details +- When: 11/01/2022 at 7:00 PM +- Where: Zoom (Rhea's Zoom room: https://ucsd.zoom.us/j/8054288343) + +## Attendance + 1. Rhea + 2. Gavyn + 3. Isaac + 4. Kara + 5. Marc + 6. Henry + 7. Daniel + 8. Sanjit + +## Notes: + - Gagan suggests we have a feature backlog and pull stuff from that + - Using Github Issues for our feature backlog + + - Perhaps integrate TTS from Lab5 into something (pick a random restaurant while driving, etc) + + - Created figma sketch for app design, uploaded to github and google slides + +## Moving forward: +- ### BY TONIGHT: + - We'll submit our pitch files +- ### LATER: + - Sanjit will upload a basic hello world program in order to test deployment/github actions + - Arthur will start figuring out how to configure github actions + +- ### PREFERENCES: + - BACKEND: Henry, Gavyn, Kara + - FRONTEND: Isaac + - NO PREFERENCE: Daniel, Marc, Rhea, Sanjit + +## End Time +- 11/01/2022 at 9:00 PM diff --git a/admin/meetings/1122022-checkin4.md b/admin/meetings/110222-checkin4.md similarity index 100% rename from admin/meetings/1122022-checkin4.md rename to admin/meetings/110222-checkin4.md diff --git a/admin/meetings/110922-checkin5.md b/admin/meetings/110922-checkin5.md new file mode 100644 index 0000000..764192c --- /dev/null +++ b/admin/meetings/110922-checkin5.md @@ -0,0 +1,36 @@ +# Meeting Minutes (11/09/2022) +## Team 29: Hackers1995 +## Meeting Topic: Weekly TA Catchup with Gagan +We are meeting with Gagan to discuss progress made on Sprint 1 and testing strategies that we need to keep in mind as we continue developing. + +## Attendance +1. Rhea Bhutada +2. George Dubinin +3. Gagan Gopalaiah +4. Sanjit Joseph + +## Meeting Details +- When: 11/09/2022 at 3:30PM +- Where: Zoom + +## Agenda: + +## Discussion Points by Gagan +- Provided updates on first sprint +- Testing Tips + - functionality testing + - test one feature + - test individual functions + - static testing + - checking if its meeting the conventions and standards for specific programming language + - linting + - specific to programming language + - overall + - if tested properly, we reduce problems end-to-end testing +- Documentation + - What the code does? + - What the file is for? + - JS Docs + +## End Time +- 11/09/2022 at 4:00PM diff --git a/admin/meetings/11722-sprint1.md b/admin/meetings/11722-sprint1.md index 264f428..93e96fc 100644 --- a/admin/meetings/11722-sprint1.md +++ b/admin/meetings/11722-sprint1.md @@ -1,41 +1,41 @@ -# Meeting Minutes (11/07/2022) -## Team 29: Hackers1995 -## Meeting Topic: First Sprint -Meeting notes for the first sprint - -## Attendance -1. Rhea Bhutada -2. George Dubinin -3. Gavyn Ezell -4. Henry Feng -5. Kara Hoagland -6. Marc Reta -7. Sanjit Joseph -8. Daniel Hernandez -9. Arthur Lu - -## Absentees -1. Isaac Otero - -## Meeting Details -- When: 11/07/2022 at 6:00PM -- Where: CSE Building Second Floor - -## Agenda: -- ### Old/Unresolved Business - - N/A -- ### New Business - - The first sprint: - - Create more Gitflows and automation. Verify current workflows and actions - - Determine interface details for the app (user experience) - - Start on the backend -- ### Next Meeting's Business - -## Decisions Made -- Linting details decided (TABS NOT SPACES) - -## End Time -- 11/07/2022 at 8:00PM - - - +# Meeting Minutes (11/07/2022) +## Team 29: Hackers1995 +## Meeting Topic: First Sprint +Meeting notes for the first sprint + +## Attendance +1. Rhea Bhutada +2. George Dubinin +3. Gavyn Ezell +4. Henry Feng +5. Kara Hoagland +6. Marc Reta +7. Sanjit Joseph +8. Daniel Hernandez +9. Arthur Lu + +## Absentees +1. Isaac Otero + +## Meeting Details +- When: 11/07/2022 at 6:00PM +- Where: CSE Building Second Floor + +## Agenda: +- ### Old/Unresolved Business + - N/A +- ### New Business + - The first sprint: + - Create more Gitflows and automation. Verify current workflows and actions + - Determine interface details for the app (user experience) + - Start on the backend +- ### Next Meeting's Business + +## Decisions Made +- Linting details decided (TABS NOT SPACES) + +## End Time +- 11/07/2022 at 8:00PM + + + diff --git a/admin/misc/rules.md b/admin/misc/rules.md index 4bdb7c9..204bacd 100644 --- a/admin/misc/rules.md +++ b/admin/misc/rules.md @@ -1,57 +1,57 @@ -# Team Working Agreement -## Term: Fall 2022 -## Creation: 10/12/2022; Revised: N/A -## Group Identification - - Team 29 - - TA: Gagan Gopalaiah - - Instructor: Professor Thomas Powell - - Team Name: Hackers1995 - -## Team member info (name/email) - 1. Rhea Bhutada, rbhutada@ucsd.edu - 2. George Dubinin, gdubinin@ucsd.edu - 3. Gavyn Ezell, gezell@ucsd.edu - 4. Henry Feng, hefeng@ucsd.edu - 5. Kara Hoagland, khoaglan@ucsd.edu - 6. Marc Reta, mreta@ucsd.edu - 7. Sanjit Joseph, smjoseph@ucsd.edu - 8. Isaac Otero, irotero@ucsd.edu - 9. Arthur Lu, a8lu@ucsd.edu - 10. Daniel Hernandez, d7hernan@ucsd.edu - -## RULES: -#### 1) Primary Means of Communication and Expectations -- All members will communicate via Slack. -- All members will be expected to read messages from group chats and direct messages, and respond in no more than 4 hours and no later than 10PM. -- All pull requests require 3 people to review the code being pushed to main. - -#### 2) Scheduling Meetings (Schedule at least one meeting as part of constructing your team agreement.) -- Members are expected to meet at least once a week with the group either in-person or on Zoom. Future meeting details will be determined within a 24 hours window. -- Team members hosting the meeting will send out a reminder of the meeting with an agenda 2 hours before the meeting. - -#### 3) General Responsibilities for All Team Members - -- Respect the contributions of others. -- Work on assignments early to allow others to review and debug any issues. -- Communicate any issues or problems as early as possible. -- Be open to criticism. - -#### 4) Specific Team Member Responsibilities/Deadlines (Optional) - -- A daily standup is required every day from every team member. A daily standup includes what you've completed, what you want to work on, and what issues you encountered for the day. If you haven't done anything for that day, write down what you will be contributing. - -#### 5) Conflict Resolution - -- Conflicts between individuals will first try to be resolved amongst the people involved. -- Group conflicts will be voted on. -- Ongoing conflicts will be reported to the TA. -- Unprofessionalism of any kind will not be tolerated. Conflicts involving this will immediately be brought up with the TA - -#### 6) Expectations of Faculty and GTA’s - -- If a team member fails to live up to this agreement, the situation may be reported to the staff, but the team will still be responsible for submitting a completed assignment. Staff will be available to meet with teams to resolve issues. - -## Team Signatures - -#### Print Name: -#### Signature: +# Team Working Agreement +## Term: Fall 2022 +## Creation: 10/12/2022; Revised: N/A +## Group Identification + - Team 29 + - TA: Gagan Gopalaiah + - Instructor: Professor Thomas Powell + - Team Name: Hackers1995 + +## Team member info (name/email) + 1. Rhea Bhutada, rbhutada@ucsd.edu + 2. George Dubinin, gdubinin@ucsd.edu + 3. Gavyn Ezell, gezell@ucsd.edu + 4. Henry Feng, hefeng@ucsd.edu + 5. Kara Hoagland, khoaglan@ucsd.edu + 6. Marc Reta, mreta@ucsd.edu + 7. Sanjit Joseph, smjoseph@ucsd.edu + 8. Isaac Otero, irotero@ucsd.edu + 9. Arthur Lu, a8lu@ucsd.edu + 10. Daniel Hernandez, d7hernan@ucsd.edu + +## RULES: +#### 1) Primary Means of Communication and Expectations +- All members will communicate via Slack. +- All members will be expected to read messages from group chats and direct messages, and respond in no more than 4 hours and no later than 10PM. +- All pull requests require 3 people to review the code being pushed to main. + +#### 2) Scheduling Meetings (Schedule at least one meeting as part of constructing your team agreement.) +- Members are expected to meet at least once a week with the group either in-person or on Zoom. Future meeting details will be determined within a 24 hours window. +- Team members hosting the meeting will send out a reminder of the meeting with an agenda 2 hours before the meeting. + +#### 3) General Responsibilities for All Team Members + +- Respect the contributions of others. +- Work on assignments early to allow others to review and debug any issues. +- Communicate any issues or problems as early as possible. +- Be open to criticism. + +#### 4) Specific Team Member Responsibilities/Deadlines (Optional) + +- A daily standup is required every day from every team member. A daily standup includes what you've completed, what you want to work on, and what issues you encountered for the day. If you haven't done anything for that day, write down what you will be contributing. + +#### 5) Conflict Resolution + +- Conflicts between individuals will first try to be resolved amongst the people involved. +- Group conflicts will be voted on. +- Ongoing conflicts will be reported to the TA. +- Unprofessionalism of any kind will not be tolerated. Conflicts involving this will immediately be brought up with the TA + +#### 6) Expectations of Faculty and GTA’s + +- If a team member fails to live up to this agreement, the situation may be reported to the staff, but the team will still be responsible for submitting a completed assignment. Staff will be available to meet with teams to resolve issues. + +## Team Signatures + +#### Print Name: +#### Signature: diff --git a/admin/team.md b/admin/team.md index 239164e..de75ace 100644 --- a/admin/team.md +++ b/admin/team.md @@ -1,73 +1,73 @@ -# **Hackers1995** - -## **Brand** -![poster](./branding/teamposter.jpg) - -## **Values** -- Openness -- Honesty -- Respect -- Integrity -- Diversity/Inclusion - -## **Roster** -### **TA: Gagan Gopalaiah** - - -### **Team Lead: Rhea Bhutada** -- #### About Me: - - My name is Rhea Bhutada and I am currently a CS major and CogSci minor at ERC. The intersection between neuroscience and computer science really fascinates me and I generally try to apply myself to projects that deal with the overlap of both of these fields. This year I'm working as an undergraduate researcher at the Swartz Center for Computational Neuroscience, which has been an extremely cool experience. Other than that I love to stay active. I used to play basketball in high school and was in an NCAA commercial with Shaq. But lately, I’ve been really into running. Overall, I'm excited to contribute to this project! Although I haven't had too much industry experience, I am interested to see how I can apply my previous course work to backend or frontend design. -- #### Link to Github: https://github.com/rheabhutada02 - - -### **Team Lead: George Dubinin** -- #### About Me: - - Hello World! I'm a fifth year (3rd year transfer) computer science major from the North Bay Area. Web development has been a big focus of mine since taking Prof Powell's 134B last winter and I'm stoked to be back in the "full stack" developer seat for 110. I am the second the team lead and in addition to my love for leading and working on team projects I am also fascinated by web development technologies including containerization, infrastructure as code (IaC), software as a service (SAAS), and web-based encryption (security). I am also an avid DJ and the traininer manmager for the DJ club on campus. This quarter is shaping up to be a memorable one! -- #### Link to Github: https://github.com/look-its-ashton - - -### **Gavyn Ezell** -- #### About Me: - - My name is Gavyn Ezell and I’m from Hawaii. Currently a 3rd year CS Major at Muir. I love video games, playing piano, and going to the gym. For SWE, backend interests me most (I am not good with design and visuals), and I’m hoping to learn a lot more backend from this project! -- #### Link to Github: https://github.com/gavyn-ezell - - -### **Daniel Hernandez** -- #### About Me: - - My name is Daniel Hernandez and I am a 3rd year Computer Science major and music minor. Some of my interests in the CS field are ML, AI, and Cybersecurity. Outside of school, I play drums for a local band. For SE, the backend aspect appeals to me the most since I am able to utilize more of what I learned from my past classes. However, I would want to try frontend since I do enjoy design to some extent. -- #### Link to Github: https://github.com/d7hernan - - -### **Henry Feng** -- #### About Me: - - My name is Henry, and I am a 3rd year CS major. I was born in China and grew up in New Zealand. I wrote my first line of code, in Python during my second year of high school. My favourite foods are ramen, steak and pasta. Some of my hobbies include playing guitar, hiking, cooking, video games, and music (from the Persona series). I am excited to start this project and hope to contribute to both frontend and backend. -- #### Link to Github: https://github.com/dusk-moon - - -### **Kara Hoagland** -- #### About Me: - - My name is Kara Hoagland and I am a 3rd year Computer Engineering major. CS-wise, I'm interested in topics such as computer vision and RFID, but it's hard to limit oneself because there's so many interesting topics out there. Outside of CS, I enjoy D&D, biking, and reading. I got some industry experience over summer and love getting to see how that experience and my previous classes all apply to this project. I'm interested in full stack but more so the backend of things. -- #### Link to Github: https://github.com/KH-Cl - - -### **Marc Reta** -- #### About Me: My name is Marc Reta and I am a 3rd year Computer Engineering major in Warren College. I love exploring San Diego and going on adventures. I have a huge interest in Public Transportation. I'm looking foward to working with everyone in my group and learn how to create an application. -- #### Link to Github: https://github.com/Graydogminer - - -### **Sanjit Joseph** -- #### About Me: - - Hi! My name is Sanjit Joseph and I'm a 3rd year CE major at Sixth. I'm from the Bay Area, so I've been surrounded by technology most of my life. I'm into building computers and I waste a lot of time (and money) messing with my PC and playing video games on it. I enjoy things outside of tech, though--as an Eagle Scout, I've done tons of backpacking throughout California and the US. I also hold a black belt in Shotokan Karate. As for this class, I'm pretty excited about all the different aspects of software engineering; frontend and backend both appeal to me, but I'm really just excited to work on a long class project in a team setting. -- #### Link to Github: https://github.com/sm-joseph - - -### **Isaac Otero** -- #### About Me: - - My name is Isaac Otero, I am a 5th year Cog Sci major. I am interested in front end development. I want to implement what I’ve learned from my design classes into my projects for front end development. -- #### Link to Github: https://github.com/Isaac-Otero - - -### **Arthur Lu** -- #### About Me: - - My name is Arthur Lu and I am a 3rd year CE major. I am primarily interested in low level systems design, hardware development and optimization, and HPC architecture. I work as an undergraduate research assistant for Prof. Turakhia developing hardware accelerators for long length genome alignment. When I’m not busy, I like to relax with some retro video games. -- #### Link to Github: https://github.com/ltcptgeneral +# **Hackers1995** + +## **Brand** +![poster](./branding/teamposter.jpg) + +## **Values** +- Openness +- Honesty +- Respect +- Integrity +- Diversity/Inclusion + +## **Roster** +### **TA: Gagan Gopalaiah** + + +### **Team Lead: Rhea Bhutada** +- #### About Me: + - My name is Rhea Bhutada and I am currently a CS major and CogSci minor at ERC. The intersection between neuroscience and computer science really fascinates me and I generally try to apply myself to projects that deal with the overlap of both of these fields. This year I'm working as an undergraduate researcher at the Swartz Center for Computational Neuroscience, which has been an extremely cool experience. Other than that I love to stay active. I used to play basketball in high school and was in an NCAA commercial with Shaq. But lately, I’ve been really into running. Overall, I'm excited to contribute to this project! Although I haven't had too much industry experience, I am interested to see how I can apply my previous course work to backend or frontend design. +- #### Link to Github: https://github.com/rheabhutada02 + + +### **Team Lead: George Dubinin** +- #### About Me: + - Hello World! I'm a fifth year (3rd year transfer) computer science major from the North Bay Area. Web development has been a big focus of mine since taking Prof Powell's 134B last winter and I'm stoked to be back in the "full stack" developer seat for 110. I am the second the team lead and in addition to my love for leading and working on team projects I am also fascinated by web development technologies including containerization, infrastructure as code (IaC), software as a service (SAAS), and web-based encryption (security). I am also an avid DJ and the traininer manmager for the DJ club on campus. This quarter is shaping up to be a memorable one! +- #### Link to Github: https://github.com/look-its-ashton + + +### **Gavyn Ezell** +- #### About Me: + - My name is Gavyn Ezell and I’m from Hawaii. Currently a 3rd year CS Major at Muir. I love video games, playing piano, and going to the gym. For SWE, backend interests me most (I am not good with design and visuals), and I’m hoping to learn a lot more backend from this project! +- #### Link to Github: https://github.com/gavyn-ezell + + +### **Daniel Hernandez** +- #### About Me: + - My name is Daniel Hernandez and I am a 3rd year Computer Science major and music minor. Some of my interests in the CS field are ML, AI, and Cybersecurity. Outside of school, I play drums for a local band. For SE, the backend aspect appeals to me the most since I am able to utilize more of what I learned from my past classes. However, I would want to try frontend since I do enjoy design to some extent. +- #### Link to Github: https://github.com/d7hernan + + +### **Henry Feng** +- #### About Me: + - My name is Henry, and I am a 3rd year CS major. I was born in China and grew up in New Zealand. I wrote my first line of code, in Python during my second year of high school. My favourite foods are ramen, steak and pasta. Some of my hobbies include playing guitar, hiking, cooking, video games, and music (from the Persona series). I am excited to start this project and hope to contribute to both frontend and backend. +- #### Link to Github: https://github.com/dusk-moon + + +### **Kara Hoagland** +- #### About Me: + - My name is Kara Hoagland and I am a 3rd year Computer Engineering major. CS-wise, I'm interested in topics such as computer vision and RFID, but it's hard to limit oneself because there's so many interesting topics out there. Outside of CS, I enjoy D&D, biking, and reading. I got some industry experience over summer and love getting to see how that experience and my previous classes all apply to this project. I'm interested in full stack but more so the backend of things. +- #### Link to Github: https://github.com/KH-Cl + + +### **Marc Reta** +- #### About Me: My name is Marc Reta and I am a 3rd year Computer Engineering major in Warren College. I love exploring San Diego and going on adventures. I have a huge interest in Public Transportation. I'm looking foward to working with everyone in my group and learn how to create an application. +- #### Link to Github: https://github.com/Graydogminer + + +### **Sanjit Joseph** +- #### About Me: + - Hi! My name is Sanjit Joseph and I'm a 3rd year CE major at Sixth. I'm from the Bay Area, so I've been surrounded by technology most of my life. I'm into building computers and I waste a lot of time (and money) messing with my PC and playing video games on it. I enjoy things outside of tech, though--as an Eagle Scout, I've done tons of backpacking throughout California and the US. I also hold a black belt in Shotokan Karate. As for this class, I'm pretty excited about all the different aspects of software engineering; frontend and backend both appeal to me, but I'm really just excited to work on a long class project in a team setting. +- #### Link to Github: https://github.com/sm-joseph + + +### **Isaac Otero** +- #### About Me: + - My name is Isaac Otero, I am a 5th year Cog Sci major. I am interested in front end development. I want to implement what I’ve learned from my design classes into my projects for front end development. +- #### Link to Github: https://github.com/Isaac-Otero + + +### **Arthur Lu** +- #### About Me: + - My name is Arthur Lu and I am a 3rd year CE major. I am primarily interested in low level systems design, hardware development and optimization, and HPC architecture. I work as an undergraduate research assistant for Prof. Turakhia developing hardware accelerators for long length genome alignment. When I’m not busy, I like to relax with some retro video games. +- #### Link to Github: https://github.com/ltcptgeneral diff --git a/package.json b/package.json index c1b3cec..bd8a69c 100644 --- a/package.json +++ b/package.json @@ -4,12 +4,17 @@ "type": "module", "scripts": { "test": "mocha --recursive --require mock-local-storage './{,!(node_modules)/**}/*.test.js'", - "lint": "eslint **/*.js", - "fix-style": "eslint --fix '**/*.js'" + "lint": "eslint '**/*.js'", + "fix-style": "eslint --fix **/*.js", + "lintHTML": "htmlhint '**/*.html'", + "lintCSS": "stylelint '**/*.css'" }, "devDependencies": { "eslint": "^8.27.0", + "htmlhint": "1.1.4", "mocha": "10", - "mock-local-storage": "^1.1.23" + "mock-local-storage": "^1.1.23", + "stylelint": "14.14.1", + "stylelint-config-standard": "^29.0.0" } } diff --git a/specs/adrs/README.md b/specs/adrs/README.md index 1f1962f..acddca4 100644 --- a/specs/adrs/README.md +++ b/specs/adrs/README.md @@ -1,2 +1,2 @@ -# Overarching Decisions -_We will eventually capture these as an ADR in markdown Links to an external site.(/specs/adrs will contain an individual document per major decision. There will be some initial ones that have to do with general project plan and approach, but more may be added as the project goes on. The main point of this capture is to explain why choices are made. As brainstorming may have your team settle on choices quickly capturing them in a document may be better than just mental consensus)_ +# Overarching Decisions +_We will eventually capture these as an ADR in markdown Links to an external site.(/specs/adrs will contain an individual document per major decision. There will be some initial ones that have to do with general project plan and approach, but more may be added as the project goes on. The main point of this capture is to explain why choices are made. As brainstorming may have your team settle on choices quickly capturing them in a document may be better than just mental consensus)_ diff --git a/static/reset.css b/static/reset.css index f4c93ad..a34cda6 100644 --- a/static/reset.css +++ b/static/reset.css @@ -79,4 +79,4 @@ html, body { form { border: solid; -} +} \ No newline at end of file