Initial commit

This commit is contained in:
Rohan Verma 2024-07-30 16:00:11 -07:00 committed by GitHub
commit 55332d1ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
168 changed files with 18456 additions and 0 deletions

33
.vscode/next-fast-turbo.code-workspace vendored Normal file
View file

@ -0,0 +1,33 @@
{
"folders": [
{
"name": "Frontend",
"path": "../apps/web"
},
{
"name": "API",
"path": "../apps/api"
},
{
"name": "Documentation",
"path": "../apps/docs"
},
{
"name": "Root",
"path": "../"
}
],
"extensions": {
"recommendations": ["joshx.workspace-terminals"]
},
"launch": {
"version": "0.2.0",
"configurations": [],
"compounds": [
{
"name": "Launch Frontend and Backend",
"configurations": ["Next.js: Chrome", "Python: FastAPI"]
}
]
}
}

11
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"python.testing.pytestArgs": ["apps"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"cSpell.enableFiletypes": ["mdx"]
}