Skip to content

Commit

Permalink
cleaning up repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jrk12b committed Jul 5, 2024
1 parent ee8b3e4 commit 46a008f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 87 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# website_qa_automation
# website_qa_automation

QA automation Repo for online portfolio

Expand All @@ -7,7 +7,7 @@ QA automation Repo for online portfolio
- Nodejs - JavaScript runtime environment and JavaScript engine
- React - JavaScript front-end library
- Express - Backend web application framework for building RESTful APIs
- MongoDB - No-SQL Database
- MongoDB/Mongoose - No-SQL Database

# Testing Tools:

Expand Down
1 change: 1 addition & 0 deletions backend/models/itemModel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const mongoose = require('mongoose');

// mongodb database schema
const itemSchema = new mongoose.Schema({
name: String,
description: String,
Expand Down
70 changes: 0 additions & 70 deletions frontend/README.md

This file was deleted.

12 changes: 8 additions & 4 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
import React, { useEffect, useState } from 'react';
import 'bootstrap/dist/css/bootstrap.min.css';
import axios from 'axios';

import 'bootstrap/dist/css/bootstrap.min.css';
import './App.css';

import ItemForm from './components/items/itemForm';
import ItemList from './components/items/itemList';
import './App.css';
import { AppProvider } from './context/AppContext';
import TimeBudget from './components/timeOfDay/TimeBudget';
import Graph from './components/timeOfDay/Graph';
import ActivityTotal from './components/timeOfDay/ActivityTotal';
import ActivityList from './components/timeOfDay/ActivityList';
import AddActivityForm from './components/timeOfDay/AddActivityForm';
import RemainingHours from './components/timeOfDay/RemainingHours';
import Header from './components/timeOfDay/Header';
import Header from './components/timeOfDay/Header'

import { AppProvider } from './context/AppContext';
;
const { PORT } = require('./config');

function App() {
Expand Down
4 changes: 0 additions & 4 deletions frontend/src/setupTests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
// jest-dom adds custom jest matchers for asserting on DOM nodes.
// allows you to do things like:
// expect(element).toHaveTextContent(/react/i)
// learn more: https://github.com/testing-library/jest-dom
import '@testing-library/jest-dom';
7 changes: 0 additions & 7 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
#!/bin/bash
cd backend && node server.js &
cd frontend && npm start

# db user and pass
# justinkurdila
# YMpla2q9VsVA49T5

# netstat -ano | findstr :3000
# taskkill /F /PID 13112

0 comments on commit 46a008f

Please sign in to comment.