forked from microsoft/sample-app-aoai-chatGPT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52ad823
commit c86be69
Showing
3,449 changed files
with
900,985 additions
and
289 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+3.95 MB
.vs/AtlasAILive-Merge/FileContentIndex/c370b56a-b5cc-47ce-aff2-470d1823cecb.vsidx
Binary file not shown.
Empty file.
1,016 changes: 1,016 additions & 0 deletions
1,016
.vs/AtlasAILive-Merge/config/applicationhost.config
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"CurrentProjectSetting": "No Configurations" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"SuppressEnvironmentCreationPrompt": true, | ||
"SuppressConfigureTestFrameworkPrompt": "true" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"", | ||
"\\venv", | ||
"\\venv\\Lib", | ||
"\\venv\\Lib\\site-packages", | ||
"\\venv\\Lib\\site-packages\\pip\\_vendor", | ||
"\\venv\\Lib\\site-packages\\pip\\_vendor\\platformdirs", | ||
"\\venv\\Lib\\site-packages\\win32", | ||
"\\venv\\Lib\\site-packages\\win32comext", | ||
"\\venv\\Lib\\site-packages\\win32comext\\shell", | ||
"\\venv\\Lib\\site-packages\\win32\\lib" | ||
], | ||
"SelectedNode": "\\venv\\Lib\\site-packages\\win32\\lib\\win32con.py", | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/x-icon" href="{{ favicon }}" /> | ||
<link rel="icon" type="image/x-icon" href="/src/assets/Atlas.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>{{ title }}</title> | ||
</head> | ||
<body> | ||
<title>Atlas AI</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/index.tsx"></script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
* { | ||
box-sizing: border-box; | ||
@font-face { | ||
font-family: 'Alaska'; | ||
src: url('assets/Alaska-VF.ttf') format('truetype'); | ||
} | ||
|
||
/* Reset default styling and use border-box sizing for all elements */ | ||
*, | ||
*::before, | ||
*::after { | ||
box-sizing: border-box; | ||
} | ||
|
||
/* Base styles for the html and body */ | ||
html, | ||
body { | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
/* Set a background color and font settings for the entire page */ | ||
html { | ||
background: #f2f2f2; | ||
font-family: | ||
'Segoe UI', | ||
'Segoe UI Web (West European)', | ||
'Segoe UI', | ||
-apple-system, | ||
BlinkMacSystemFont, | ||
Roboto, | ||
'Helvetica Neue', | ||
sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
background: #f2f2f2; | ||
font-family: 'Alaska', sans-serif; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
|
||
/* Ensure that the root div takes up the full height of the page */ | ||
#root { | ||
height: 100%; | ||
height: 100%; | ||
} |
Oops, something went wrong.