Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Master #509

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"git.ignoreLimitWarning": true,
"liveServer.settings.port": 3001
}
36,644 changes: 36,644 additions & 0 deletions client/package-lock.json

Large diffs are not rendered by default.

29 changes: 22 additions & 7 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,29 @@
"name": "video-recommendation",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000/thevideos/",
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.0.1"
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.0.2",
"@mui/material": "^6.0.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.7.7",
"get-youtube-id": "^1.0.1",
"react": "^18.3.1",
"react-bootstrap-validation": "^0.1.11",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-native-vector-icons": "^10.1.0",
"react-native-video": "^6.5.0",
"react-player": "^2.16.0",
"react-router-dom": "^6.26.1",
"react-scripts": "5.0.1",
"react-video-js-player": "^1.1.1",
"react-youtube": "^10.1.0",
"web-vitals": "^4.2.3"
},
"scripts": {
"start": "react-scripts start",
Expand Down
11 changes: 10 additions & 1 deletion client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="utf-8" />
Expand All @@ -9,7 +10,11 @@
name="description"
content="Web site created using create-react-app"
/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -28,7 +33,11 @@
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div id="root">
{/* <video autoPlay Loop muted className="bg-header">
<source src={Video} type="video/mp4" />
</video> */}
</div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
Expand Down
Loading