-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6ccf1e1
Showing
188 changed files
with
30,047 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"next/babel", | ||
{ | ||
"preset-env": { | ||
"targets": { | ||
"browsers": ["> 0.25%, not dead"] | ||
} | ||
} | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# Node.js dependencies | ||
/node_modules | ||
/jspm_packages | ||
|
||
# TypeScript v1 declaration files | ||
typings | ||
|
||
# Optional npm cache directory | ||
.npm | ||
|
||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# Optional REPL history | ||
.node_repl_history | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Yarn Integrity file | ||
.yarn-integrity | ||
|
||
# dotenv environment variable files | ||
.env | ||
.env.test | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# Next.js build output | ||
.next | ||
out | ||
|
||
# Nuxt.js build output | ||
.nuxt | ||
dist | ||
|
||
# Gatsby files | ||
.cache/ | ||
|
||
|
||
# Vuepress build output | ||
.vuepress/dist | ||
|
||
# Serverless directories | ||
.serverless/ | ||
|
||
# FuseBox cache | ||
.fusebox/ | ||
|
||
# DynamoDB Local files | ||
.dynamodb/ | ||
|
||
# Temporary folders | ||
tmp | ||
temp | ||
|
||
# IDE and editor directories | ||
.idea | ||
.vscode | ||
*.swp | ||
*.swo | ||
*~ | ||
|
||
# OS generated files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# secret key | ||
*.key | ||
*.key.pub |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
|
||
# Your openai api key. (required) | ||
OPENAI_API_KEY=sk-xxxx | ||
|
||
# Access password, separated by comma. (optional) | ||
CODE=your-password | ||
|
||
# You can start service behind a proxy | ||
PROXY_URL=http://localhost:7890 | ||
|
||
# (optional) | ||
# Default: Empty | ||
# Googel Gemini Pro API key, set if you want to use Google Gemini Pro API. | ||
GOOGLE_API_KEY= | ||
|
||
# (optional) | ||
# Default: https://generativelanguage.googleapis.com/ | ||
# Googel Gemini Pro API url without pathname, set if you want to customize Google Gemini Pro API url. | ||
GOOGLE_URL= | ||
|
||
# Override openai api request base url. (optional) | ||
# Default: https://api.openai.com | ||
# Examples: http://your-openai-proxy.com | ||
BASE_URL= | ||
|
||
# Specify OpenAI organization ID.(optional) | ||
# Default: Empty | ||
OPENAI_ORG_ID= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do not want users to use GPT-4, set this value to 1. | ||
DISABLE_GPT4= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do not want users to input their own API key, set this value to 1. | ||
HIDE_USER_API_KEY= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you do want users to query balance, set this value to 1. | ||
ENABLE_BALANCE_QUERY= | ||
|
||
# (optional) | ||
# Default: Empty | ||
# If you want to disable parse settings from url, set this value to 1. | ||
DISABLE_FAST_LINK= | ||
|
||
|
||
# anthropic claude Api Key.(optional) | ||
ANTHROPIC_API_KEY= | ||
|
||
### anthropic claude Api version. (optional) | ||
ANTHROPIC_API_VERSION= | ||
|
||
|
||
|
||
### anthropic claude Api url (optional) | ||
ANTHROPIC_URL= | ||
|
||
### (optional) | ||
WHITE_WEBDEV_ENDPOINTS= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lib/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"plugins": ["prettier"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: "[Bug] " | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Describe the bug" | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: "Bug Description" | ||
description: "A clear and concise description of what the bug is." | ||
placeholder: "Explain the bug..." | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## To Reproduce" | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: "Steps to Reproduce" | ||
description: "Steps to reproduce the behavior:" | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Expected behavior" | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: "Expected Behavior" | ||
description: "A clear and concise description of what you expected to happen." | ||
placeholder: "Describe what you expected to happen..." | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Screenshots" | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: "Screenshots" | ||
description: "If applicable, add screenshots to help explain your problem." | ||
placeholder: "Paste your screenshots here or write 'N/A' if not applicable..." | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Deployment" | ||
- type: checkboxes | ||
id: deployment | ||
attributes: | ||
label: "Deployment Method" | ||
description: "Please select the deployment method you are using." | ||
options: | ||
- label: "Docker" | ||
- label: "Vercel" | ||
- label: "Server" | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Desktop (please complete the following information):" | ||
- type: input | ||
id: desktop-os | ||
attributes: | ||
label: "Desktop OS" | ||
description: "Your desktop operating system." | ||
placeholder: "e.g., Windows 10" | ||
validations: | ||
required: false | ||
- type: input | ||
id: desktop-browser | ||
attributes: | ||
label: "Desktop Browser" | ||
description: "Your desktop browser." | ||
placeholder: "e.g., Chrome, Safari" | ||
validations: | ||
required: false | ||
- type: input | ||
id: desktop-version | ||
attributes: | ||
label: "Desktop Browser Version" | ||
description: "Version of your desktop browser." | ||
placeholder: "e.g., 89.0" | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Smartphone (please complete the following information):" | ||
- type: input | ||
id: smartphone-device | ||
attributes: | ||
label: "Smartphone Device" | ||
description: "Your smartphone device." | ||
placeholder: "e.g., iPhone X" | ||
validations: | ||
required: false | ||
- type: input | ||
id: smartphone-os | ||
attributes: | ||
label: "Smartphone OS" | ||
description: "Your smartphone operating system." | ||
placeholder: "e.g., iOS 14.4" | ||
validations: | ||
required: false | ||
- type: input | ||
id: smartphone-browser | ||
attributes: | ||
label: "Smartphone Browser" | ||
description: "Your smartphone browser." | ||
placeholder: "e.g., Safari" | ||
validations: | ||
required: false | ||
- type: input | ||
id: smartphone-version | ||
attributes: | ||
label: "Smartphone Browser Version" | ||
description: "Version of your smartphone browser." | ||
placeholder: "e.g., 14" | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Additional Logs" | ||
- type: textarea | ||
id: additional-logs | ||
attributes: | ||
label: "Additional Logs" | ||
description: "Add any logs about the problem here." | ||
placeholder: "Paste any relevant logs here..." | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project | ||
title: "[Feature Request]: " | ||
labels: ["enhancement"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "## Is your feature request related to a problem? Please describe." | ||
- type: textarea | ||
id: problem-description | ||
attributes: | ||
label: Problem Description | ||
description: "A clear and concise description of what the problem is. Example: I'm always frustrated when [...]" | ||
placeholder: "Explain the problem you are facing..." | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Describe the solution you'd like" | ||
- type: textarea | ||
id: desired-solution | ||
attributes: | ||
label: Solution Description | ||
description: A clear and concise description of what you want to happen. | ||
placeholder: "Describe the solution you'd like..." | ||
validations: | ||
required: true | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Describe alternatives you've considered" | ||
- type: textarea | ||
id: alternatives-considered | ||
attributes: | ||
label: Alternatives Considered | ||
description: A clear and concise description of any alternative solutions or features you've considered. | ||
placeholder: "Describe any alternative solutions or features you've considered..." | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## Additional context" | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context or screenshots about the feature request here. | ||
placeholder: "Add any other context or screenshots about the feature request here..." | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
Oops, something went wrong.