Add user settings configuration for GPT-5 Codex model with Azure provider
This commit is contained in:
114
.gitignore
vendored
Normal file
114
.gitignore
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
# =============================================
|
||||
# VITE SPECIFIC
|
||||
# =============================================
|
||||
# Vite cache
|
||||
.vite/
|
||||
.vite-ssg-manifest.json
|
||||
|
||||
# Vite build output
|
||||
dist/
|
||||
dist-ssr/
|
||||
*.local
|
||||
|
||||
# Vite environment variables
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.production.local
|
||||
.env.test.local
|
||||
|
||||
# =============================================
|
||||
# NODE.JS
|
||||
# =============================================
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
.pnpm-store/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional stylelint cache
|
||||
.stylelintcache
|
||||
|
||||
# =============================================
|
||||
# DEVELOPMENT
|
||||
# =============================================
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea/
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
# OS generated files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# =============================================
|
||||
# TESTING
|
||||
# =============================================
|
||||
# Test coverage
|
||||
coverage/
|
||||
.nyc_output/
|
||||
|
||||
# Cypress
|
||||
cypress/videos/
|
||||
cypress/screenshots/
|
||||
cypress/downloads/
|
||||
|
||||
# Playwright
|
||||
playwright-report/
|
||||
test-results/
|
||||
|
||||
# Vitest
|
||||
__snapshots__/
|
||||
*.snap
|
||||
|
||||
# Your .e2e-test directory
|
||||
.e2e-test/
|
||||
|
||||
# =============================================
|
||||
# PACKAGE MANAGERS
|
||||
# =============================================
|
||||
# Yarn 2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# =============================================
|
||||
# BUILD OUTPUTS
|
||||
# =============================================
|
||||
# TypeScript
|
||||
*.tsbuildinfo
|
||||
|
||||
# Vue
|
||||
*.vue.html
|
||||
|
||||
# =============================================
|
||||
# LOGS
|
||||
# =============================================
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# =============================================
|
||||
# TEMPORARY FILES
|
||||
# =============================================
|
||||
*.tmp
|
||||
*.temp
|
||||
*~
|
||||
Reference in New Issue
Block a user