├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── bug_report_zh.md │ ├── feature_request.md │ └── feature_request_zh.md └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README-zh.md ├── README.md ├── backend ├── README.md ├── config.yml ├── config │ └── config.go ├── constants │ ├── bucket.go │ ├── context.go │ ├── enabled.go │ ├── header.go │ ├── system.go │ └── task.go ├── controllers │ ├── handler.go │ ├── schedule.go │ ├── spider.go │ ├── task.go │ ├── user.go │ └── version.go ├── dao │ ├── base.go │ ├── schedule.go │ ├── spider.go │ ├── task.go │ └── user.go ├── database │ └── kvdb.go ├── errors │ └── base.go ├── forms │ ├── base.go │ ├── schedule.go │ ├── spider.go │ ├── task.go │ └── user.go ├── go.mod ├── lib │ └── validate_bridge │ │ └── validator.go ├── main.go ├── managers │ ├── clear.go │ ├── execute.go │ ├── schedule.go │ ├── sys_exec │ │ ├── linux_mac.go │ │ └── windows.go │ └── task.go ├── middlewares │ ├── auth.go │ └── cors.go ├── models │ ├── schedule.go │ ├── spider.go │ ├── task.go │ └── user.go ├── package-lock.json ├── package.json ├── results │ ├── common.go │ ├── schedule.go │ ├── spider.go │ ├── task.go │ └── version.go ├── routes │ └── base.go ├── scripts │ ├── install-chromedriver.sh │ ├── install-dotnet.sh │ ├── install-firefox.sh │ ├── install-go.sh │ ├── install-java.sh │ ├── install-nodejs.sh │ ├── install-nvm.sh │ ├── install-php.sh │ ├── install-ruby.sh │ └── install.sh ├── services │ ├── doc.go │ ├── schedule.go │ ├── spider.go │ ├── task.go │ ├── user.go │ └── version.go ├── tests │ ├── api │ │ ├── user_test.go │ │ └── utils.go │ ├── config │ │ └── config_test.go │ ├── http │ │ ├── http-client.private.env.json │ │ ├── schedule.http │ │ ├── spider.http │ │ ├── task.http │ │ └── user.http │ └── test.zip └── utils │ ├── array.go │ ├── chan.go │ ├── chan_test.go │ ├── encrypt.go │ ├── file.go │ ├── helpers.go │ ├── system.go │ ├── time.go │ └── zip.go ├── docker-compose.yml ├── docker_init.sh ├── frontend ├── .editorconfig ├── .env.development ├── .env.production ├── .env.test ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── babel.config.js ├── jest.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── font-awesome.min.css │ └── index.html ├── sources.list ├── src │ ├── App.vue │ ├── api │ │ └── request.js │ ├── assets │ │ ├── 404_images │ │ │ ├── 404 2.png │ │ │ ├── 404.png │ │ │ └── 404_cloud.png │ │ ├── favicon.ico │ │ ├── js │ │ │ ├── loginCanvas.js │ │ │ └── svg │ │ │ │ └── logo.js │ │ ├── logo.png │ │ └── logo.svg │ ├── components │ │ ├── Breadcrumb │ │ │ └── index.vue │ │ ├── Cron │ │ │ ├── index.vue │ │ │ └── language │ │ │ │ ├── cn.js │ │ │ │ ├── en.js │ │ │ │ └── index.js │ │ ├── Dialog │ │ │ └── CrawlConfirmDialog.vue │ │ ├── Disclaimer │ │ │ └── index.vue │ │ ├── Documentation │ │ │ └── Documentation.vue │ │ ├── Environment │ │ │ └── EnvironmentList.vue │ │ ├── File │ │ │ ├── FileDetail.vue │ │ │ └── FileList.vue │ │ ├── Hamburger │ │ │ └── index.vue │ │ ├── Pagination │ │ │ └── index.vue │ │ ├── Schedule │ │ │ └── ScheduleTaskList.vue │ │ ├── Screenfull │ │ │ └── index.vue │ │ ├── ScrollPane │ │ │ └── index.vue │ │ ├── ScrollView │ │ │ ├── LogItem.vue │ │ │ └── LogView.vue │ │ ├── SizeSelect │ │ │ └── index.vue │ │ ├── Stats │ │ │ ├── MetricCard.vue │ │ │ └── SpiderStats.vue │ │ ├── Status │ │ │ └── StatusTag.vue │ │ ├── Sticky │ │ │ └── index.vue │ │ ├── SvgIcon │ │ │ └── index.vue │ │ ├── ThemePicker │ │ │ └── index.vue │ │ └── Tinymce │ │ │ ├── components │ │ │ ├── editorImage 2.vue │ │ │ └── editorImage.vue │ │ │ ├── index.vue │ │ │ ├── plugins.js │ │ │ └── toolbar.js │ ├── i18n │ │ ├── en.js │ │ ├── index.js │ │ └── zh.js │ ├── icons │ │ ├── index.js │ │ ├── svg │ │ │ ├── example.svg │ │ │ ├── eye-open.svg │ │ │ ├── eye.svg │ │ │ ├── form.svg │ │ │ ├── link.svg │ │ │ ├── nested.svg │ │ │ ├── password.svg │ │ │ ├── table.svg │ │ │ ├── tree.svg │ │ │ └── user.svg │ │ └── svgo.yml │ ├── main.ts │ ├── permission.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── getters.js │ │ ├── index.js │ │ └── modules │ │ │ ├── app.js │ │ │ ├── deploy.js │ │ │ ├── doc.js │ │ │ ├── file.js │ │ │ ├── lang.js │ │ │ ├── schedule.js │ │ │ ├── spider.js │ │ │ ├── stats.js │ │ │ ├── tagsView.js │ │ │ ├── task.js │ │ │ ├── user.js │ │ │ └── version.js │ ├── styles │ │ ├── element-ui.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ ├── sidebar.scss │ │ ├── transition.scss │ │ └── variables.scss │ ├── utils │ │ ├── auth.js │ │ ├── doc.js │ │ ├── encrypt.js │ │ ├── gogocodeTransfer.js │ │ ├── i18n.js │ │ ├── index.js │ │ ├── log.js │ │ ├── stats.js │ │ └── validate.js │ └── views │ │ ├── 404.vue │ │ ├── home │ │ └── Home.vue │ │ ├── layout │ │ ├── Layout.vue │ │ ├── components │ │ │ ├── AppMain.vue │ │ │ ├── Navbar.vue │ │ │ ├── Sidebar │ │ │ │ ├── Item.vue │ │ │ │ ├── Link.vue │ │ │ │ ├── SidebarItem.vue │ │ │ │ └── index.vue │ │ │ ├── TagsView.vue │ │ │ └── index.js │ │ └── mixin │ │ │ └── ResizeHandler.js │ │ ├── login │ │ └── Login.vue │ │ ├── schedule │ │ └── ScheduleList.vue │ │ ├── spider │ │ ├── SpiderList.vue │ │ └── SpiderSchedules.vue │ │ └── task │ │ ├── TaskDetail.vue │ │ └── TaskList.vue ├── tsconfig.json └── vue.config.js └── nginx └── web.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.github/ISSUE_TEMPLATE/bug_report_zh.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.github/ISSUE_TEMPLATE/feature_request_zh.md -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/README.md -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/config.yml -------------------------------------------------------------------------------- /backend/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/config/config.go -------------------------------------------------------------------------------- /backend/constants/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/bucket.go -------------------------------------------------------------------------------- /backend/constants/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/context.go -------------------------------------------------------------------------------- /backend/constants/enabled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/enabled.go -------------------------------------------------------------------------------- /backend/constants/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/header.go -------------------------------------------------------------------------------- /backend/constants/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/system.go -------------------------------------------------------------------------------- /backend/constants/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/constants/task.go -------------------------------------------------------------------------------- /backend/controllers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/handler.go -------------------------------------------------------------------------------- /backend/controllers/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/schedule.go -------------------------------------------------------------------------------- /backend/controllers/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/spider.go -------------------------------------------------------------------------------- /backend/controllers/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/task.go -------------------------------------------------------------------------------- /backend/controllers/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/user.go -------------------------------------------------------------------------------- /backend/controllers/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/controllers/version.go -------------------------------------------------------------------------------- /backend/dao/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/dao/base.go -------------------------------------------------------------------------------- /backend/dao/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/dao/schedule.go -------------------------------------------------------------------------------- /backend/dao/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/dao/spider.go -------------------------------------------------------------------------------- /backend/dao/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/dao/task.go -------------------------------------------------------------------------------- /backend/dao/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/dao/user.go -------------------------------------------------------------------------------- /backend/database/kvdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/database/kvdb.go -------------------------------------------------------------------------------- /backend/errors/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/errors/base.go -------------------------------------------------------------------------------- /backend/forms/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/forms/base.go -------------------------------------------------------------------------------- /backend/forms/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/forms/schedule.go -------------------------------------------------------------------------------- /backend/forms/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/forms/spider.go -------------------------------------------------------------------------------- /backend/forms/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/forms/task.go -------------------------------------------------------------------------------- /backend/forms/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/forms/user.go -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/lib/validate_bridge/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/lib/validate_bridge/validator.go -------------------------------------------------------------------------------- /backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/main.go -------------------------------------------------------------------------------- /backend/managers/clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/clear.go -------------------------------------------------------------------------------- /backend/managers/execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/execute.go -------------------------------------------------------------------------------- /backend/managers/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/schedule.go -------------------------------------------------------------------------------- /backend/managers/sys_exec/linux_mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/sys_exec/linux_mac.go -------------------------------------------------------------------------------- /backend/managers/sys_exec/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/sys_exec/windows.go -------------------------------------------------------------------------------- /backend/managers/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/managers/task.go -------------------------------------------------------------------------------- /backend/middlewares/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/middlewares/auth.go -------------------------------------------------------------------------------- /backend/middlewares/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/middlewares/cors.go -------------------------------------------------------------------------------- /backend/models/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/models/schedule.go -------------------------------------------------------------------------------- /backend/models/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/models/spider.go -------------------------------------------------------------------------------- /backend/models/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/models/task.go -------------------------------------------------------------------------------- /backend/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/models/user.go -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/results/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/results/common.go -------------------------------------------------------------------------------- /backend/results/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/results/schedule.go -------------------------------------------------------------------------------- /backend/results/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/results/spider.go -------------------------------------------------------------------------------- /backend/results/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/results/task.go -------------------------------------------------------------------------------- /backend/results/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/results/version.go -------------------------------------------------------------------------------- /backend/routes/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/routes/base.go -------------------------------------------------------------------------------- /backend/scripts/install-chromedriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-chromedriver.sh -------------------------------------------------------------------------------- /backend/scripts/install-dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-dotnet.sh -------------------------------------------------------------------------------- /backend/scripts/install-firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-firefox.sh -------------------------------------------------------------------------------- /backend/scripts/install-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-go.sh -------------------------------------------------------------------------------- /backend/scripts/install-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-java.sh -------------------------------------------------------------------------------- /backend/scripts/install-nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-nodejs.sh -------------------------------------------------------------------------------- /backend/scripts/install-nvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-nvm.sh -------------------------------------------------------------------------------- /backend/scripts/install-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-php.sh -------------------------------------------------------------------------------- /backend/scripts/install-ruby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install-ruby.sh -------------------------------------------------------------------------------- /backend/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/scripts/install.sh -------------------------------------------------------------------------------- /backend/services/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/doc.go -------------------------------------------------------------------------------- /backend/services/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/schedule.go -------------------------------------------------------------------------------- /backend/services/spider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/spider.go -------------------------------------------------------------------------------- /backend/services/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/task.go -------------------------------------------------------------------------------- /backend/services/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/user.go -------------------------------------------------------------------------------- /backend/services/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/services/version.go -------------------------------------------------------------------------------- /backend/tests/api/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/api/user_test.go -------------------------------------------------------------------------------- /backend/tests/api/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/api/utils.go -------------------------------------------------------------------------------- /backend/tests/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/config/config_test.go -------------------------------------------------------------------------------- /backend/tests/http/http-client.private.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/http/http-client.private.env.json -------------------------------------------------------------------------------- /backend/tests/http/schedule.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/http/schedule.http -------------------------------------------------------------------------------- /backend/tests/http/spider.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/http/spider.http -------------------------------------------------------------------------------- /backend/tests/http/task.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/http/task.http -------------------------------------------------------------------------------- /backend/tests/http/user.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/http/user.http -------------------------------------------------------------------------------- /backend/tests/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/tests/test.zip -------------------------------------------------------------------------------- /backend/utils/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/array.go -------------------------------------------------------------------------------- /backend/utils/chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/chan.go -------------------------------------------------------------------------------- /backend/utils/chan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/chan_test.go -------------------------------------------------------------------------------- /backend/utils/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/encrypt.go -------------------------------------------------------------------------------- /backend/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/file.go -------------------------------------------------------------------------------- /backend/utils/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/helpers.go -------------------------------------------------------------------------------- /backend/utils/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/system.go -------------------------------------------------------------------------------- /backend/utils/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/time.go -------------------------------------------------------------------------------- /backend/utils/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/backend/utils/zip.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/docker_init.sh -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.env.production -------------------------------------------------------------------------------- /frontend/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.env.test -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | src/ 3 | -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/.prettierrc.js -------------------------------------------------------------------------------- /frontend/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/babel.config.js -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/public/font-awesome.min.css -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/sources.list -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/api/request.js -------------------------------------------------------------------------------- /frontend/src/assets/404_images/404 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/404_images/404 2.png -------------------------------------------------------------------------------- /frontend/src/assets/404_images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/404_images/404.png -------------------------------------------------------------------------------- /frontend/src/assets/404_images/404_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/404_images/404_cloud.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/src/assets/js/loginCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/js/loginCanvas.js -------------------------------------------------------------------------------- /frontend/src/assets/js/svg/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/js/svg/logo.js -------------------------------------------------------------------------------- /frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/assets/logo.svg -------------------------------------------------------------------------------- /frontend/src/components/Breadcrumb/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Breadcrumb/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Cron/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Cron/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Cron/language/cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Cron/language/cn.js -------------------------------------------------------------------------------- /frontend/src/components/Cron/language/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Cron/language/en.js -------------------------------------------------------------------------------- /frontend/src/components/Cron/language/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Cron/language/index.js -------------------------------------------------------------------------------- /frontend/src/components/Dialog/CrawlConfirmDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Dialog/CrawlConfirmDialog.vue -------------------------------------------------------------------------------- /frontend/src/components/Disclaimer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Disclaimer/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Documentation/Documentation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Documentation/Documentation.vue -------------------------------------------------------------------------------- /frontend/src/components/Environment/EnvironmentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Environment/EnvironmentList.vue -------------------------------------------------------------------------------- /frontend/src/components/File/FileDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/File/FileDetail.vue -------------------------------------------------------------------------------- /frontend/src/components/File/FileList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/File/FileList.vue -------------------------------------------------------------------------------- /frontend/src/components/Hamburger/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Hamburger/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Schedule/ScheduleTaskList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Schedule/ScheduleTaskList.vue -------------------------------------------------------------------------------- /frontend/src/components/Screenfull/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Screenfull/index.vue -------------------------------------------------------------------------------- /frontend/src/components/ScrollPane/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/ScrollPane/index.vue -------------------------------------------------------------------------------- /frontend/src/components/ScrollView/LogItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/ScrollView/LogItem.vue -------------------------------------------------------------------------------- /frontend/src/components/ScrollView/LogView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/ScrollView/LogView.vue -------------------------------------------------------------------------------- /frontend/src/components/SizeSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/SizeSelect/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Stats/MetricCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Stats/MetricCard.vue -------------------------------------------------------------------------------- /frontend/src/components/Stats/SpiderStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Stats/SpiderStats.vue -------------------------------------------------------------------------------- /frontend/src/components/Status/StatusTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Status/StatusTag.vue -------------------------------------------------------------------------------- /frontend/src/components/Sticky/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Sticky/index.vue -------------------------------------------------------------------------------- /frontend/src/components/SvgIcon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/SvgIcon/index.vue -------------------------------------------------------------------------------- /frontend/src/components/ThemePicker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/ThemePicker/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Tinymce/components/editorImage 2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Tinymce/components/editorImage 2.vue -------------------------------------------------------------------------------- /frontend/src/components/Tinymce/components/editorImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Tinymce/components/editorImage.vue -------------------------------------------------------------------------------- /frontend/src/components/Tinymce/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Tinymce/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Tinymce/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Tinymce/plugins.js -------------------------------------------------------------------------------- /frontend/src/components/Tinymce/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/components/Tinymce/toolbar.js -------------------------------------------------------------------------------- /frontend/src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/i18n/en.js -------------------------------------------------------------------------------- /frontend/src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/i18n/index.js -------------------------------------------------------------------------------- /frontend/src/i18n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/i18n/zh.js -------------------------------------------------------------------------------- /frontend/src/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/index.js -------------------------------------------------------------------------------- /frontend/src/icons/svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/example.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/eye-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/eye-open.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/eye.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/form.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/form.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/link.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/nested.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/nested.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/password.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/table.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/tree.svg -------------------------------------------------------------------------------- /frontend/src/icons/svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svg/user.svg -------------------------------------------------------------------------------- /frontend/src/icons/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/icons/svgo.yml -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/permission.js -------------------------------------------------------------------------------- /frontend/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/router/index.js -------------------------------------------------------------------------------- /frontend/src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/getters.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/store/modules/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/app.js -------------------------------------------------------------------------------- /frontend/src/store/modules/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/deploy.js -------------------------------------------------------------------------------- /frontend/src/store/modules/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/doc.js -------------------------------------------------------------------------------- /frontend/src/store/modules/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/file.js -------------------------------------------------------------------------------- /frontend/src/store/modules/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/lang.js -------------------------------------------------------------------------------- /frontend/src/store/modules/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/schedule.js -------------------------------------------------------------------------------- /frontend/src/store/modules/spider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/spider.js -------------------------------------------------------------------------------- /frontend/src/store/modules/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/stats.js -------------------------------------------------------------------------------- /frontend/src/store/modules/tagsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/tagsView.js -------------------------------------------------------------------------------- /frontend/src/store/modules/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/task.js -------------------------------------------------------------------------------- /frontend/src/store/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/user.js -------------------------------------------------------------------------------- /frontend/src/store/modules/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/store/modules/version.js -------------------------------------------------------------------------------- /frontend/src/styles/element-ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/element-ui.scss -------------------------------------------------------------------------------- /frontend/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/index.scss -------------------------------------------------------------------------------- /frontend/src/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/mixin.scss -------------------------------------------------------------------------------- /frontend/src/styles/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/sidebar.scss -------------------------------------------------------------------------------- /frontend/src/styles/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/transition.scss -------------------------------------------------------------------------------- /frontend/src/styles/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/styles/variables.scss -------------------------------------------------------------------------------- /frontend/src/utils/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/auth.js -------------------------------------------------------------------------------- /frontend/src/utils/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/doc.js -------------------------------------------------------------------------------- /frontend/src/utils/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/encrypt.js -------------------------------------------------------------------------------- /frontend/src/utils/gogocodeTransfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/gogocodeTransfer.js -------------------------------------------------------------------------------- /frontend/src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/i18n.js -------------------------------------------------------------------------------- /frontend/src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/index.js -------------------------------------------------------------------------------- /frontend/src/utils/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/log.js -------------------------------------------------------------------------------- /frontend/src/utils/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/stats.js -------------------------------------------------------------------------------- /frontend/src/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/utils/validate.js -------------------------------------------------------------------------------- /frontend/src/views/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/404.vue -------------------------------------------------------------------------------- /frontend/src/views/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/home/Home.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/Layout.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/AppMain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/AppMain.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/Navbar.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/Sidebar/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/Sidebar/Item.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/Sidebar/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/Sidebar/Link.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/Sidebar/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/Sidebar/SidebarItem.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/Sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/Sidebar/index.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/TagsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/TagsView.vue -------------------------------------------------------------------------------- /frontend/src/views/layout/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/components/index.js -------------------------------------------------------------------------------- /frontend/src/views/layout/mixin/ResizeHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/layout/mixin/ResizeHandler.js -------------------------------------------------------------------------------- /frontend/src/views/login/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/login/Login.vue -------------------------------------------------------------------------------- /frontend/src/views/schedule/ScheduleList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/schedule/ScheduleList.vue -------------------------------------------------------------------------------- /frontend/src/views/spider/SpiderList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/spider/SpiderList.vue -------------------------------------------------------------------------------- /frontend/src/views/spider/SpiderSchedules.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/spider/SpiderSchedules.vue -------------------------------------------------------------------------------- /frontend/src/views/task/TaskDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/task/TaskDetail.vue -------------------------------------------------------------------------------- /frontend/src/views/task/TaskList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/src/views/task/TaskList.vue -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/frontend/vue.config.js -------------------------------------------------------------------------------- /nginx/web.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crawlab-team/crawlab-lite/HEAD/nginx/web.conf --------------------------------------------------------------------------------