├── README.md ├── compute_host ├── Dockerfile ├── example_model_blip │ ├── model_invoke.py │ └── requirements.txt ├── example_model_clip │ └── model_invoke.py ├── example_model_falcon7b │ ├── README.md │ ├── config.json │ ├── configuration_RW.py │ ├── flask_app.py │ ├── generation_config.json │ ├── model_invoke.py │ ├── modelling_RW.py │ └── requirements.txt ├── example_model_falcon7b_instruct │ ├── flask_app.py │ ├── model_invoke.py │ └── requirements.txt ├── example_model_sd │ ├── flask_app.py │ ├── model_invoke.py │ └── requirements.txt ├── fake_inference_app.py ├── flask_app.py.template ├── host_agent.py ├── model-stable-diffusion-xl │ ├── flask_app.py │ ├── model_invoke.py │ ├── requirements.txt │ └── test.py ├── requirements.txt ├── utils.py └── worker_agent.py └── server ├── backend ├── Dockerfile ├── app │ ├── __init__.py │ ├── auto_scaler.py │ ├── decorators.py │ ├── invoke_utils.py │ ├── job_matcher.py │ ├── load_jobs.py │ ├── models │ │ ├── __init__.py │ │ ├── api_key.py │ │ ├── inference_job.py │ │ ├── invocation.py │ │ ├── model.py │ │ ├── user.py │ │ └── worker.py │ ├── routes │ │ ├── __init__.py │ │ ├── api_key_routes.py │ │ ├── inference_job_routes.py │ │ ├── invocation_routes.py │ │ ├── login_routes.py │ │ ├── model_routes.py │ │ ├── user_routes.py │ │ ├── worker_routes.py │ │ └── worker_socketio_routes.py │ ├── templates │ │ └── email_verify.html │ └── utils.py ├── config.py ├── create_seed_data.py ├── pytest.ini ├── requirements.txt ├── run.py └── tests │ ├── __init__.py │ ├── integration_test.py │ ├── test_api_key_routes.py │ ├── test_inference_job_routes.py │ ├── test_job_matcher.py │ ├── test_model_routes.py │ ├── test_user_routes.py │ └── test_worker_routes.py ├── cert.pem ├── datadog ├── Dockerfile └── conf.d │ ├── backend.yaml │ ├── frontend.yaml │ ├── nginx.yaml │ └── redisdb.yaml ├── docker-compose-staging.yml ├── docker-compose.yml ├── docker-compose_frontend_dev.yml ├── frontend ├── Dockerfile ├── README.md ├── env_template ├── mock │ └── userAPI.ts ├── nginx.conf ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── src │ ├── access.ts │ ├── app.tsx │ ├── assets │ │ └── logo.png │ ├── components │ │ ├── Guide │ │ │ ├── Guide.less │ │ │ ├── Guide.tsx │ │ │ └── index.ts │ │ └── UserAction │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── constants │ │ └── index.ts │ ├── global.css │ ├── hooks │ │ ├── index.ts │ │ └── useColumnsState.ts │ ├── models │ │ └── global.ts │ ├── pages │ │ ├── Access │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── components │ │ │ │ └── Overview │ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── InferenceJobs │ │ │ ├── components │ │ │ │ ├── CreateInferenceJobModal │ │ │ │ │ └── index.tsx │ │ │ │ └── GetInferenceJobModal │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── services.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── services.ts │ │ ├── Invocations │ │ │ ├── components │ │ │ │ └── InvocationDetailModal │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── services.ts │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Login │ │ │ ├── assets │ │ │ │ └── logo.png │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── services.ts │ │ ├── ModelsPage │ │ │ ├── components │ │ │ │ ├── CreateModelModal │ │ │ │ │ └── index.tsx │ │ │ │ └── ModelDetailModal │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── services.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── services.ts │ │ ├── Register │ │ │ ├── assets │ │ │ │ └── logo.png │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── services.ts │ │ ├── TestInvocation │ │ │ ├── index.tsx │ │ │ └── services.ts │ │ └── Workers │ │ │ ├── index.tsx │ │ │ └── services.ts │ ├── services │ │ ├── global.ts │ │ └── invoke.ts │ └── utils │ │ ├── format.ts │ │ └── http │ │ ├── index.js │ │ └── src │ │ ├── Request.js │ │ ├── index.js │ │ ├── interceptors.js │ │ └── utils │ │ └── applyFn.js ├── tailwind.config.js ├── tailwind.css ├── tsconfig.json └── typings.d.ts ├── landingPage ├── Dockerfile ├── README.md ├── app.js ├── bootstrap.js ├── config.ts ├── f.yml ├── package.json ├── pm2.config.js ├── src │ ├── config │ │ └── config.default.ts │ ├── configuration.ts │ ├── controller │ │ ├── api.ts │ │ └── index.ts │ ├── interface │ │ ├── detail.ts │ │ └── index.ts │ ├── mock │ │ ├── detail.ts │ │ └── index.ts │ └── service │ │ ├── detail.ts │ │ └── index.ts ├── tailwind.config.js ├── tsconfig.build.json ├── tsconfig.json ├── typings │ └── data │ │ ├── detail-index.d.ts │ │ ├── foo.d.ts │ │ ├── index.d.ts │ │ └── page-index.d.ts └── web │ ├── @types │ ├── global.d.ts │ └── typings.d.ts │ ├── common.less │ ├── components │ ├── brief │ │ ├── index.module.less │ │ └── index.tsx │ ├── layout │ │ ├── App.tsx │ │ ├── assets │ │ │ └── favicon.ico │ │ ├── fetch.ts │ │ ├── global.css │ │ └── index.tsx │ ├── player │ │ ├── index.module.less │ │ └── index.tsx │ ├── recommend │ │ ├── index.module.less │ │ └── index.tsx │ ├── rectangle │ │ ├── index.module.less │ │ └── index.tsx │ └── search │ │ ├── index.module.less │ │ └── index.tsx │ ├── images │ └── icon.png │ ├── pages │ ├── detail │ │ ├── fetch.ts │ │ └── render$id.tsx │ └── index │ │ ├── components │ │ ├── CoreSection │ │ │ └── index.tsx │ │ ├── DemoSection │ │ │ ├── 2_1.gif │ │ │ ├── 2_2.gif │ │ │ └── index.tsx │ │ ├── EnvironmentSection │ │ │ ├── icon.jpg │ │ │ └── index.tsx │ │ ├── ExplainSection │ │ │ ├── icon.png │ │ │ └── index.tsx │ │ ├── Footer │ │ │ ├── index.tsx │ │ │ └── logo.png │ │ ├── Header │ │ │ ├── index.tsx │ │ │ ├── logo.png │ │ │ └── logo.png.zip │ │ ├── LandingSection │ │ │ └── index.tsx │ │ ├── ProviderSection │ │ │ └── index.tsx │ │ └── SDKSection │ │ │ ├── TextItem │ │ │ └── index.tsx │ │ │ ├── code.png │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── fetch.ts │ │ └── render.tsx │ └── store │ └── index.ts └── nginx.conf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/README.md -------------------------------------------------------------------------------- /compute_host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/Dockerfile -------------------------------------------------------------------------------- /compute_host/example_model_blip/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_blip/model_invoke.py -------------------------------------------------------------------------------- /compute_host/example_model_blip/requirements.txt: -------------------------------------------------------------------------------- 1 | transformers 2 | -------------------------------------------------------------------------------- /compute_host/example_model_clip/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_clip/model_invoke.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/README.md -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/config.json -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/configuration_RW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/configuration_RW.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/flask_app.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/generation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/generation_config.json -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/model_invoke.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/modelling_RW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/modelling_RW.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b/requirements.txt -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b_instruct/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b_instruct/flask_app.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b_instruct/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b_instruct/model_invoke.py -------------------------------------------------------------------------------- /compute_host/example_model_falcon7b_instruct/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_falcon7b_instruct/requirements.txt -------------------------------------------------------------------------------- /compute_host/example_model_sd/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_sd/flask_app.py -------------------------------------------------------------------------------- /compute_host/example_model_sd/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_sd/model_invoke.py -------------------------------------------------------------------------------- /compute_host/example_model_sd/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/example_model_sd/requirements.txt -------------------------------------------------------------------------------- /compute_host/fake_inference_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/fake_inference_app.py -------------------------------------------------------------------------------- /compute_host/flask_app.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/flask_app.py.template -------------------------------------------------------------------------------- /compute_host/host_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/host_agent.py -------------------------------------------------------------------------------- /compute_host/model-stable-diffusion-xl/flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/model-stable-diffusion-xl/flask_app.py -------------------------------------------------------------------------------- /compute_host/model-stable-diffusion-xl/model_invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/model-stable-diffusion-xl/model_invoke.py -------------------------------------------------------------------------------- /compute_host/model-stable-diffusion-xl/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/model-stable-diffusion-xl/requirements.txt -------------------------------------------------------------------------------- /compute_host/model-stable-diffusion-xl/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/model-stable-diffusion-xl/test.py -------------------------------------------------------------------------------- /compute_host/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/requirements.txt -------------------------------------------------------------------------------- /compute_host/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/utils.py -------------------------------------------------------------------------------- /compute_host/worker_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/compute_host/worker_agent.py -------------------------------------------------------------------------------- /server/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/Dockerfile -------------------------------------------------------------------------------- /server/backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/__init__.py -------------------------------------------------------------------------------- /server/backend/app/auto_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/auto_scaler.py -------------------------------------------------------------------------------- /server/backend/app/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/decorators.py -------------------------------------------------------------------------------- /server/backend/app/invoke_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/invoke_utils.py -------------------------------------------------------------------------------- /server/backend/app/job_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/job_matcher.py -------------------------------------------------------------------------------- /server/backend/app/load_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/load_jobs.py -------------------------------------------------------------------------------- /server/backend/app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/backend/app/models/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/api_key.py -------------------------------------------------------------------------------- /server/backend/app/models/inference_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/inference_job.py -------------------------------------------------------------------------------- /server/backend/app/models/invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/invocation.py -------------------------------------------------------------------------------- /server/backend/app/models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/model.py -------------------------------------------------------------------------------- /server/backend/app/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/user.py -------------------------------------------------------------------------------- /server/backend/app/models/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/models/worker.py -------------------------------------------------------------------------------- /server/backend/app/routes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/backend/app/routes/api_key_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/api_key_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/inference_job_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/inference_job_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/invocation_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/invocation_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/login_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/login_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/model_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/model_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/user_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/user_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/worker_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/worker_routes.py -------------------------------------------------------------------------------- /server/backend/app/routes/worker_socketio_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/routes/worker_socketio_routes.py -------------------------------------------------------------------------------- /server/backend/app/templates/email_verify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/templates/email_verify.html -------------------------------------------------------------------------------- /server/backend/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/app/utils.py -------------------------------------------------------------------------------- /server/backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/config.py -------------------------------------------------------------------------------- /server/backend/create_seed_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/create_seed_data.py -------------------------------------------------------------------------------- /server/backend/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/pytest.ini -------------------------------------------------------------------------------- /server/backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/requirements.txt -------------------------------------------------------------------------------- /server/backend/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/run.py -------------------------------------------------------------------------------- /server/backend/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # tests/__init__.py 2 | -------------------------------------------------------------------------------- /server/backend/tests/integration_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/integration_test.py -------------------------------------------------------------------------------- /server/backend/tests/test_api_key_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_api_key_routes.py -------------------------------------------------------------------------------- /server/backend/tests/test_inference_job_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_inference_job_routes.py -------------------------------------------------------------------------------- /server/backend/tests/test_job_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_job_matcher.py -------------------------------------------------------------------------------- /server/backend/tests/test_model_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_model_routes.py -------------------------------------------------------------------------------- /server/backend/tests/test_user_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_user_routes.py -------------------------------------------------------------------------------- /server/backend/tests/test_worker_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/backend/tests/test_worker_routes.py -------------------------------------------------------------------------------- /server/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/cert.pem -------------------------------------------------------------------------------- /server/datadog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/datadog/Dockerfile -------------------------------------------------------------------------------- /server/datadog/conf.d/backend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/datadog/conf.d/backend.yaml -------------------------------------------------------------------------------- /server/datadog/conf.d/frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/datadog/conf.d/frontend.yaml -------------------------------------------------------------------------------- /server/datadog/conf.d/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/datadog/conf.d/nginx.yaml -------------------------------------------------------------------------------- /server/datadog/conf.d/redisdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/datadog/conf.d/redisdb.yaml -------------------------------------------------------------------------------- /server/docker-compose-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/docker-compose-staging.yml -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/docker-compose_frontend_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/docker-compose_frontend_dev.yml -------------------------------------------------------------------------------- /server/frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/Dockerfile -------------------------------------------------------------------------------- /server/frontend/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | `@umijs/max` 模板项目,更多功能参考 [Umi Max 简介](https://umijs.org/docs/max/introduce) 4 | -------------------------------------------------------------------------------- /server/frontend/env_template: -------------------------------------------------------------------------------- 1 | # move this to .env 2 | REACT_APP_BACKEND_SERVER_URL=http://localhost:5000 3 | -------------------------------------------------------------------------------- /server/frontend/mock/userAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/mock/userAPI.ts -------------------------------------------------------------------------------- /server/frontend/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/nginx.conf -------------------------------------------------------------------------------- /server/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/package-lock.json -------------------------------------------------------------------------------- /server/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/package.json -------------------------------------------------------------------------------- /server/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/public/favicon.ico -------------------------------------------------------------------------------- /server/frontend/src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/access.ts -------------------------------------------------------------------------------- /server/frontend/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/app.tsx -------------------------------------------------------------------------------- /server/frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /server/frontend/src/components/Guide/Guide.less: -------------------------------------------------------------------------------- 1 | .title { 2 | margin: 0 auto; 3 | font-weight: 200; 4 | } 5 | -------------------------------------------------------------------------------- /server/frontend/src/components/Guide/Guide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/components/Guide/Guide.tsx -------------------------------------------------------------------------------- /server/frontend/src/components/Guide/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/components/Guide/index.ts -------------------------------------------------------------------------------- /server/frontend/src/components/UserAction/index.less: -------------------------------------------------------------------------------- 1 | .ant-pro-sider-actions { 2 | display: block !important; 3 | } -------------------------------------------------------------------------------- /server/frontend/src/components/UserAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/components/UserAction/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_NAME = 'Umi Max'; 2 | -------------------------------------------------------------------------------- /server/frontend/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/global.css -------------------------------------------------------------------------------- /server/frontend/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/hooks/index.ts -------------------------------------------------------------------------------- /server/frontend/src/hooks/useColumnsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/hooks/useColumnsState.ts -------------------------------------------------------------------------------- /server/frontend/src/models/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/models/global.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/Access/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Access/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Home/components/Overview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Home/components/Overview/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/components/CreateInferenceJobModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/components/CreateInferenceJobModal/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/components/GetInferenceJobModal/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/InferenceJobs/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/InferenceJobs/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/Invocations/components/InvocationDetailModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Invocations/components/InvocationDetailModal/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/Invocations/components/InvocationDetailModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Invocations/components/InvocationDetailModal/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Invocations/components/InvocationDetailModal/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Invocations/components/InvocationDetailModal/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/Invocations/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Invocations/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/Invocations/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Invocations/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Login/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Login/assets/logo.png -------------------------------------------------------------------------------- /server/frontend/src/pages/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Login/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Login/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Login/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/components/CreateModelModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/components/CreateModelModal/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/components/ModelDetailModal/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/components/ModelDetailModal/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/components/ModelDetailModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/components/ModelDetailModal/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/components/ModelDetailModal/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/components/ModelDetailModal/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/index.less: -------------------------------------------------------------------------------- 1 | a { 2 | color: rgba(79, 70, 229, 1); 3 | } 4 | -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/ModelsPage/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/ModelsPage/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/Register/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Register/assets/logo.png -------------------------------------------------------------------------------- /server/frontend/src/pages/Register/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Register/index.less -------------------------------------------------------------------------------- /server/frontend/src/pages/Register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Register/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Register/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Register/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/TestInvocation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/TestInvocation/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/TestInvocation/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/TestInvocation/services.ts -------------------------------------------------------------------------------- /server/frontend/src/pages/Workers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Workers/index.tsx -------------------------------------------------------------------------------- /server/frontend/src/pages/Workers/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/pages/Workers/services.ts -------------------------------------------------------------------------------- /server/frontend/src/services/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/services/global.ts -------------------------------------------------------------------------------- /server/frontend/src/services/invoke.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/frontend/src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/format.ts -------------------------------------------------------------------------------- /server/frontend/src/utils/http/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/http/index.js -------------------------------------------------------------------------------- /server/frontend/src/utils/http/src/Request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/http/src/Request.js -------------------------------------------------------------------------------- /server/frontend/src/utils/http/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/http/src/index.js -------------------------------------------------------------------------------- /server/frontend/src/utils/http/src/interceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/http/src/interceptors.js -------------------------------------------------------------------------------- /server/frontend/src/utils/http/src/utils/applyFn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/src/utils/http/src/utils/applyFn.js -------------------------------------------------------------------------------- /server/frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/tailwind.config.js -------------------------------------------------------------------------------- /server/frontend/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/frontend/tailwind.css -------------------------------------------------------------------------------- /server/frontend/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./src/.umi/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /server/frontend/typings.d.ts: -------------------------------------------------------------------------------- 1 | import '@umijs/max/typings'; 2 | -------------------------------------------------------------------------------- /server/landingPage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/Dockerfile -------------------------------------------------------------------------------- /server/landingPage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/README.md -------------------------------------------------------------------------------- /server/landingPage/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/app.js -------------------------------------------------------------------------------- /server/landingPage/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/bootstrap.js -------------------------------------------------------------------------------- /server/landingPage/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/config.ts -------------------------------------------------------------------------------- /server/landingPage/f.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/f.yml -------------------------------------------------------------------------------- /server/landingPage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/package.json -------------------------------------------------------------------------------- /server/landingPage/pm2.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/pm2.config.js -------------------------------------------------------------------------------- /server/landingPage/src/config/config.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/config/config.default.ts -------------------------------------------------------------------------------- /server/landingPage/src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/configuration.ts -------------------------------------------------------------------------------- /server/landingPage/src/controller/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/controller/api.ts -------------------------------------------------------------------------------- /server/landingPage/src/controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/controller/index.ts -------------------------------------------------------------------------------- /server/landingPage/src/interface/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/interface/detail.ts -------------------------------------------------------------------------------- /server/landingPage/src/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/interface/index.ts -------------------------------------------------------------------------------- /server/landingPage/src/mock/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/mock/detail.ts -------------------------------------------------------------------------------- /server/landingPage/src/mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/mock/index.ts -------------------------------------------------------------------------------- /server/landingPage/src/service/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/service/detail.ts -------------------------------------------------------------------------------- /server/landingPage/src/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/src/service/index.ts -------------------------------------------------------------------------------- /server/landingPage/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/tailwind.config.js -------------------------------------------------------------------------------- /server/landingPage/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/tsconfig.build.json -------------------------------------------------------------------------------- /server/landingPage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/tsconfig.json -------------------------------------------------------------------------------- /server/landingPage/typings/data/detail-index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/typings/data/detail-index.d.ts -------------------------------------------------------------------------------- /server/landingPage/typings/data/foo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/typings/data/foo.d.ts -------------------------------------------------------------------------------- /server/landingPage/typings/data/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/typings/data/index.d.ts -------------------------------------------------------------------------------- /server/landingPage/typings/data/page-index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/typings/data/page-index.d.ts -------------------------------------------------------------------------------- /server/landingPage/web/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/@types/global.d.ts -------------------------------------------------------------------------------- /server/landingPage/web/@types/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.less' 2 | -------------------------------------------------------------------------------- /server/landingPage/web/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/common.less -------------------------------------------------------------------------------- /server/landingPage/web/components/brief/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/brief/index.module.less -------------------------------------------------------------------------------- /server/landingPage/web/components/brief/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/brief/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/layout/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/layout/App.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/layout/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/layout/assets/favicon.ico -------------------------------------------------------------------------------- /server/landingPage/web/components/layout/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/layout/fetch.ts -------------------------------------------------------------------------------- /server/landingPage/web/components/layout/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/layout/global.css -------------------------------------------------------------------------------- /server/landingPage/web/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/layout/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/player/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/player/index.module.less -------------------------------------------------------------------------------- /server/landingPage/web/components/player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/player/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/recommend/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/recommend/index.module.less -------------------------------------------------------------------------------- /server/landingPage/web/components/recommend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/recommend/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/rectangle/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/rectangle/index.module.less -------------------------------------------------------------------------------- /server/landingPage/web/components/rectangle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/rectangle/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/components/search/index.module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/search/index.module.less -------------------------------------------------------------------------------- /server/landingPage/web/components/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/components/search/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/images/icon.png -------------------------------------------------------------------------------- /server/landingPage/web/pages/detail/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/detail/fetch.ts -------------------------------------------------------------------------------- /server/landingPage/web/pages/detail/render$id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/detail/render$id.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/CoreSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/CoreSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/DemoSection/2_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/DemoSection/2_1.gif -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/DemoSection/2_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/DemoSection/2_2.gif -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/DemoSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/DemoSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/EnvironmentSection/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/EnvironmentSection/icon.jpg -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/EnvironmentSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/EnvironmentSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/ExplainSection/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/ExplainSection/icon.png -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/ExplainSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/ExplainSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/Footer/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/Footer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/Footer/logo.png -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/Header/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/Header/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/Header/logo.png -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/Header/logo.png.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/Header/logo.png.zip -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/LandingSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/LandingSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/ProviderSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/ProviderSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/SDKSection/TextItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/SDKSection/TextItem/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/SDKSection/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/SDKSection/code.png -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/SDKSection/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/SDKSection/index.less -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/components/SDKSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/components/SDKSection/index.tsx -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/fetch.ts -------------------------------------------------------------------------------- /server/landingPage/web/pages/index/render.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/pages/index/render.tsx -------------------------------------------------------------------------------- /server/landingPage/web/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/landingPage/web/store/index.ts -------------------------------------------------------------------------------- /server/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteNova-Official/ByteNova/HEAD/server/nginx.conf --------------------------------------------------------------------------------