Skip to content

Commit 55332d1

Browse files
authored
Initial commit
0 parents  commit 55332d1

File tree

168 files changed

+18456
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+18456
-0
lines changed

.eslintrc.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// This configuration only applies to the package manager root.
2+
/** @type {import("eslint").Linter.Config} */
3+
module.exports = {
4+
ignorePatterns: ["apps/**", "packages/**"],
5+
extends: ["@repo/eslint-config/library.js"],
6+
parser: "@typescript-eslint/parser",
7+
parserOptions: {
8+
project: true,
9+
},
10+
};

.gitignore

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Dependencies
2+
node_modules
3+
.pnp
4+
.pnp.js
5+
6+
# Local env files
7+
.env
8+
.env.local
9+
.env.development.local
10+
.env.test.local
11+
.env.production.local
12+
13+
# Testing
14+
coverage
15+
16+
# Turbo
17+
.turbo
18+
19+
# Vercel
20+
.vercel
21+
22+
# Build Outputs
23+
.next/
24+
out/
25+
build
26+
dist
27+
28+
# Debug
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
32+
33+
# Misc
34+
.DS_Store
35+
*.pem
36+
37+
# Byte-compiled / optimized / DLL files
38+
__pycache__/
39+
*.py[cod]
40+
*$py.class
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.nox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
*.py,cover
53+
.hypothesis/
54+
.pytest_cache/
55+
cover/
56+
57+
# Environments
58+
.venv

.npmrc

Whitespace-only changes.
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "Frontend",
5+
"path": "../apps/web"
6+
},
7+
{
8+
"name": "API",
9+
"path": "../apps/api"
10+
},
11+
{
12+
"name": "Documentation",
13+
"path": "../apps/docs"
14+
},
15+
{
16+
"name": "Root",
17+
"path": "../"
18+
}
19+
],
20+
"extensions": {
21+
"recommendations": ["joshx.workspace-terminals"]
22+
},
23+
"launch": {
24+
"version": "0.2.0",
25+
"configurations": [],
26+
"compounds": [
27+
{
28+
"name": "Launch Frontend and Backend",
29+
"configurations": ["Next.js: Chrome", "Python: FastAPI"]
30+
}
31+
]
32+
}
33+
}

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"eslint.workingDirectories": [
3+
{
4+
"mode": "auto"
5+
}
6+
],
7+
"python.testing.pytestArgs": ["apps"],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true,
10+
"cSpell.enableFiletypes": ["mdx"]
11+
}

0 commit comments

Comments
 (0)