Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MODSetter authored Jul 30, 2024
0 parents commit 55332d1
Show file tree
Hide file tree
Showing 168 changed files with 18,456 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// This configuration only applies to the package manager root.
/** @type {import("eslint").Linter.Config} */
module.exports = {
ignorePatterns: ["apps/**", "packages/**"],
extends: ["@repo/eslint-config/library.js"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: true,
},
};
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Dependencies
node_modules
.pnp
.pnp.js

# Local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Testing
coverage

# Turbo
.turbo

# Vercel
.vercel

# Build Outputs
.next/
out/
build
dist

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Misc
.DS_Store
*.pem

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Environments
.venv
Empty file added .npmrc
Empty file.
33 changes: 33 additions & 0 deletions .vscode/next-fast-turbo.code-workspace
Original file line number Diff line number Diff line change
@@ -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 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"python.testing.pytestArgs": ["apps"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"cSpell.enableFiletypes": ["mdx"]
}
Loading

0 comments on commit 55332d1

Please sign in to comment.