forked from gradio-app/gradio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move files * commit the rest of the files * fix lockfile * fix workflow * fix type errors * fix tests * only run ci when certain files change * run correct test command in ci * version * fix pypi script --------- Co-authored-by: Abubakar Abid <[email protected]>
- Loading branch information
Showing
495 changed files
with
445 additions
and
337 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
**/js/app/public/** | ||
**/pnpm-workspace.yaml | ||
**/js/app/dist/** | ||
**/pnpm-lock.yaml | ||
**/js/plot/src/Plot.svelte | ||
**/.svelte-kit/** | ||
**/demo/** | ||
**/gradio/** | ||
**/website/** | ||
**/venv/** | ||
**/.github/** | ||
**/guides/** | ||
**/test/** | ||
**/*.md |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,3 @@ | ||
import config from "../js/app/vite.config"; | ||
|
||
export default config; |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
|
||
root = true | ||
|
||
[*] | ||
[{js/*, client/js/*}] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = tab | ||
tab_width = 2 |
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
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
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
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
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 |
---|---|---|
|
@@ -53,4 +53,9 @@ workspace.code-workspace | |
.venv* | ||
|
||
# FRP | ||
gradio/frpc_* | ||
gradio/frpc_* | ||
|
||
# js | ||
node_modules | ||
public/build/ | ||
test-results |
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 |
---|---|---|
@@ -1,23 +1,16 @@ | ||
{ | ||
"python.formatting.provider": "black", | ||
"cssvar.files": [ | ||
// Or your custom Pollen bundle | ||
"./ui/node_modules/pollen-css/pollen.css", | ||
], | ||
// Do not ignore css files in node_modules, which is ignored by default | ||
"cssvar.ignore": [], | ||
// Use Pollen's inbuilt variable ordering | ||
"cssvar.disableSort": true, | ||
// Add support for autocomplete in other file types | ||
"cssvar.extensions": [ | ||
"js", | ||
"css", | ||
"html", | ||
"jsx", | ||
"tsx", | ||
"svelte" | ||
], | ||
"python.analysis.extraPaths": [ | ||
"./gradio/themes/utils" | ||
] | ||
} | ||
"python.formatting.provider": "black", | ||
"cssvar.files": [ | ||
// Or your custom Pollen bundle | ||
"./js/node_modules/pollen-css/pollen.css" | ||
], | ||
// Do not ignore css files in node_modules, which is ignored by default | ||
"cssvar.ignore": [], | ||
// Use Pollen's inbuilt variable ordering | ||
"cssvar.disableSort": true, | ||
// Add support for autocomplete in other file types | ||
"cssvar.extensions": ["js", "css", "html", "jsx", "tsx", "svelte"], | ||
"python.analysis.extraPaths": ["./gradio/themes/utils"], | ||
"prettier.configPath": ".config/.prettierrc.json", | ||
"prettier.ignorePath": "./config/.prettierignore" | ||
} |
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
File renamed without changes.
File renamed without changes.
Oops, something went wrong.