Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions part4/bloglist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ npm run start:test

## Notes

- Live app: `https://bloglist-dunc.onrender.com/`
- Tests use `TEST_MONGODB_URI` with `NODE_ENV=test`.
- Parts 5 and 7 expect this backend to be available at `http://localhost:3003`.
- `npm run build` uses `part7/bloglist-frontend-redux` as the UI source for the served production bundle.
25 changes: 23 additions & 2 deletions part7/bloglist-frontend-redux/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,30 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bloglist</title>
<meta
name="description"
content="Bloglist is a full-stack app for managing blogs, users, likes, and comments."
/>
<meta name="theme-color" content="#0D1B4B" />
<meta property="og:title" content="Bloglist" />
<meta
property="og:description"
content="Full-stack app for managing blogs, users, likes, and comments."
/>
<meta property="og:image" content="https://bloglist-dunc.onrender.com/preview.png" />
<meta property="og:image:alt" content="Bloglist social preview card" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://bloglist-dunc.onrender.com/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Bloglist" />
<meta
name="twitter:description"
content="Full-stack app for managing blogs, users, likes, and comments."
/>
<meta name="twitter:image" content="https://bloglist-dunc.onrender.com/preview.png" />
<title>Bloglist | Manage Blogs and Users</title>
</head>
<body>
<div id="root"></div>
Expand Down
20 changes: 20 additions & 0 deletions part7/bloglist-frontend-redux/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added part7/bloglist-frontend-redux/public/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
82 changes: 82 additions & 0 deletions part7/bloglist-frontend-redux/public/preview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading