Skip to content

Commit

Permalink
feat: added a simple proxy server
Browse files Browse the repository at this point in the history
  • Loading branch information
Pulkitxm committed Oct 7, 2024
1 parent 2cc99c6 commit 1aeaf9e
Show file tree
Hide file tree
Showing 11 changed files with 3,400 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
. "$(dirname -- "$0")/_/husky.sh"

cd core && npm run format && npx tsc -b && npm run build
cd ../docker-builder npm run format && npm run build
cd ../docker-builder npm run format && npm run build
cd ../proxy-server && npm run format && npm run build
5 changes: 5 additions & 0 deletions proxy-server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
output*/
tsconfig.tsbuildinfo
node_modules/
.env
dist/
38 changes: 38 additions & 0 deletions proxy-server/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Ignore node_modules
node_modules

# Ignore build output
dist
build

# Ignore coverage reports
coverage

# Ignore environment files
.env
.env.local
.env.*.local

# Ignore log files
*.log

# Ignore TypeScript declaration files
*.d.ts

# Ignore temporary files
tmp
temp

# Ignore IDE and editor config files
.vscode
.idea
*.sublime-workspace
*.sublime-project

# Ignore all test files
**/*.spec.ts
**/*.test.ts

# Ignore other non-source files
*.tsbuildinfo
output/
9 changes: 9 additions & 0 deletions proxy-server/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"bracketSpacing": true,
"endOfLine": "lf",
"printWidth": 80,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all"
}
Loading

0 comments on commit 1aeaf9e

Please sign in to comment.