Skip to content
Open

M #20

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 .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
API_URL=http://localhost:8080
SOCKETS_URL=ws://localhost:8080
REACT_APP_AUTH0_DOMAIN=dev-auth0domain-goes-here.us.auth0.com
REACT_APP_AUTH0_CLIENT_ID=some-client-id-goes-here
REACT_APP_AUTH0_AUDIENCE=https://dev-find-this-under-APIs-in-the-dashboard.us.auth0.com/api/v2/
Empty file added .github/copilot-instructions.md
Empty file.
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"github.copilot"
]
}
2 changes: 2 additions & 0 deletions .vscode/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@import "tailwindcss";

31 changes: 0 additions & 31 deletions CAPSTONE-I.md

This file was deleted.

6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Capstone I Frontend
# Capstone II Frontend

This project uses React and React-Router to display a Single-Page App.

Please refer to the [Capstone I Project Requirements](./REQUIREMENTS.md), as well as the [Collaboration Guide](./CAPSTONE-I.md).

## Getting Started

This app works best in conjunction with a Capstone I Backend. Go to that repo and get it up and running so that this Frontend has an API to request data from.
This app works best in conjunction with a Capstone II Backend. Go to that repo and get it up and running so that this Frontend has an API to request data from.

With that done, run the following commands:

Expand Down
85 changes: 0 additions & 85 deletions REQUIREMENTS.md

This file was deleted.

Binary file removed dist/favicon.ico
Binary file not shown.
13 changes: 10 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,18 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" />
<title>Capstone 1</title>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🏆</text></svg>"
/>
<link href="/dist/styles.css" rel="stylesheet">
<title>Capstone 2</title>
<script defer src="main.js"></script>
</head>
<body>
<div id="root"></div>
<div id="root">

</div>

</body>
</html>
Loading