forked from crawlab-team/crawlab
-
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.
Merge pull request crawlab-team#1067 from crawlab-team/develop
Develop
- Loading branch information
Showing
20 changed files
with
4,720 additions
and
2,989 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
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,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = tab | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[{*.yml, *.yaml, *.json}] | ||
indent_size = 2 |
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
version: '3' | ||
|
||
tasks: | ||
dev: | ||
desc: Switch to dev mode for local development. | ||
cmds: | ||
- cp -f go.mod.dev go.mod | ||
|
||
deploy: | ||
desc: Switch to deploy mode for code publish. | ||
cmds: | ||
- echo 'not implemented' |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module crawlab | ||
|
||
go 1.16 | ||
|
||
replace ( | ||
github.com/crawlab-team/crawlab-core => ../../crawlab-core | ||
github.com/crawlab-team/crawlab-vcs => ../../crawlab-vcs | ||
github.com/crawlab-team/crawlab-fs => ../../crawlab-fs | ||
github.com/crawlab-team/crawlab-db => ../../crawlab-db | ||
) | ||
|
||
require ( | ||
github.com/apex/log v1.9.0 | ||
github.com/crawlab-team/crawlab-core v0.6.0-beta.20211230.1200 | ||
github.com/crawlab-team/go-trace v0.1.1 | ||
github.com/gin-gonic/gin v1.7.1 | ||
github.com/spf13/cobra v1.1.3 | ||
github.com/spf13/viper v1.7.1 | ||
go.uber.org/dig v1.10.0 | ||
) |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
root = true | ||
|
||
[*] | ||
tab_width = 2 | ||
# charset = utf-8 | ||
# end_of_line = lf | ||
# indent_size = 4 | ||
# indent_style = space | ||
# insert_final_newline = true | ||
# max_line_length = 120 | ||
# tab_width = 4 | ||
# trim_trailing_whitespace = true | ||
|
||
[*.ts] | ||
indent_size = 2 | ||
|
||
[*.scss] | ||
indent_size = 2 | ||
|
||
[{*.ats, *.ts}] | ||
# indent_size = 2 | ||
# tab_width = 2 | ||
|
||
[{*.js, *.cjs}] | ||
# indent_size = 2 | ||
# tab_width = 2 | ||
|
||
[{*.sht, *.html, *.shtm, *.shtml, *.htm, *.ng}] | ||
# indent_size = 2 | ||
# tab_width = 2 | ||
|
||
[{.analysis_options, *.yml, *.yaml}] | ||
# indent_size = 2 | ||
|
||
[{.babelrc, .prettierrc, .stylelintrc, .eslintrc, jest.config, *.json, *.jsb3, *.jsb2, *.bowerrc}] | ||
# indent_size = 2 | ||
|
||
[vue.config.js] | ||
indent_size = 2 | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
NODE_ENV='analyze' | ||
VUE_APP_API_BASE_URL=http://localhost:8000 |
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,27 +1,45 @@ | ||
{ | ||
"name": "@crawlab/app", | ||
"version": "0.6.0-beta.20211226.1800", | ||
"description": "", | ||
"version": "0.6.0-beta.20220218.1800", | ||
"scripts": { | ||
"serve": "vue-cli-service serve", | ||
"serve:dist": "serve dist", | ||
"build": "vue-cli-service build", | ||
"build:development": "vue-cli-service build --mode development", | ||
"build:docker": "vue-cli-service build --mode docker" | ||
"build:docker": "vue-cli-service build --mode docker", | ||
"build:analyze": "vue-cli-service build --mode analyze" | ||
}, | ||
"author": { | ||
"name": "Marvin Zhang", | ||
"email": "[email protected]" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"dependencies": { | ||
"crawlab-ui": "0.6.0-beta.20211229.1830", | ||
"vue": "3.0.11", | ||
"@element-plus/icons": "^0.0.11", | ||
"@fortawesome/fontawesome-svg-core": "^1.3.0", | ||
"@fortawesome/free-brands-svg-icons": "^6.0.0", | ||
"@fortawesome/free-regular-svg-icons": "^6.0.0", | ||
"@fortawesome/free-solid-svg-icons": "^6.0.0", | ||
"@fortawesome/vue-fontawesome": "^3.0.0-5", | ||
"atom-material-icons": "^3.0.0", | ||
"codemirror": "^5.59.1", | ||
"crawlab-ui": "^0.6.0-beta.20220213.1200", | ||
"echarts": "^5.1.2", | ||
"element-plus": "^1.3.0-beta.9", | ||
"vue": "^3.2", | ||
"vue-router": "^4.0.11" | ||
}, | ||
"devDependencies": { | ||
"@vue/cli-service": "^4.5.13", | ||
"@babel/core": "^7.17.2", | ||
"@babel/preset-env": "^7.16.11", | ||
"@babel/preset-typescript": "^7.16.7", | ||
"@vue/cli-plugin-babel": "^4.5.15", | ||
"@vue/cli-service": "^4.5.15", | ||
"@vue/compiler-sfc": "^3.0.11", | ||
"serve": "^13.0.2" | ||
"babel-loader": "^8.2.3", | ||
"copy-webpack-plugin": "^6.0", | ||
"raw-loader": "^4.0.2", | ||
"serve": "^13.0.2", | ||
"webpack-bundle-analyzer": "^4.5.0" | ||
} | ||
} |
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
Oops, something went wrong.