├── .editorconfig ├── .eslintignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── apps ├── document │ └── doc.md ├── main │ ├── README.md │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── index.less │ │ ├── render.js │ │ └── utils.js │ ├── template │ │ ├── index.ejs │ │ └── loader.html │ ├── webpack.config.js │ └── yarn.lock ├── platform │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── ovine.config.js │ ├── package.json │ ├── src │ │ ├── app.tsx │ │ ├── components │ │ │ ├── app │ │ │ │ ├── context.ts │ │ │ │ ├── index.tsx │ │ │ │ └── styled.ts │ │ │ ├── layout │ │ │ │ ├── header.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── styled.ts │ │ │ │ └── user_item.tsx │ │ │ ├── section │ │ │ │ └── index.tsx │ │ │ └── tabs │ │ │ │ └── index.tsx │ │ ├── core │ │ │ ├── amis.ts │ │ │ ├── api │ │ │ │ ├── resource.ts │ │ │ │ └── utils.ts │ │ │ ├── constants.ts │ │ │ ├── env.ts │ │ │ ├── hooks.tsx │ │ │ ├── request.ts │ │ │ ├── types.ts │ │ │ ├── user.ts │ │ │ └── utils.ts │ │ ├── icons │ │ │ ├── index.tsx │ │ │ └── left_top_mark.svg │ │ ├── pages │ │ │ ├── login │ │ │ │ ├── index.tsx │ │ │ │ └── styled.ts │ │ │ ├── org │ │ │ │ ├── application │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── role │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── members.ts │ │ │ │ │ ├── schema.tsx │ │ │ │ │ ├── styled.ts │ │ │ │ │ └── tpl.ts │ │ │ │ ├── setting │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.tsx │ │ │ │ │ └── styled.ts │ │ │ │ └── team │ │ │ │ │ ├── api.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── schema.tsx │ │ │ │ │ └── styled.ts │ │ │ ├── register │ │ │ │ ├── api.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── schema.tsx │ │ │ │ └── styled.ts │ │ │ └── sys │ │ │ │ ├── dashbord │ │ │ │ └── index.tsx │ │ │ │ ├── org │ │ │ │ ├── api.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── schema.tsx │ │ │ │ └── styled.ts │ │ │ │ ├── setting │ │ │ │ ├── api.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── schema.tsx │ │ │ │ └── styled.ts │ │ │ │ └── user │ │ │ │ ├── api.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── schema.tsx │ │ │ │ └── styled.ts │ │ ├── public_path.js │ │ └── routes │ │ │ ├── hooks.ts │ │ │ ├── org.tsx │ │ │ ├── route.tsx │ │ │ └── sys.tsx │ ├── template.ejs │ ├── tsconfig.json │ ├── typings │ │ ├── global.d.ts │ │ └── instance.d.ts │ ├── webpack.config.js │ └── yarn.lock └── rubik │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── ovine.config.js │ ├── package.json │ ├── scss │ └── themes │ │ └── _antd.scss │ ├── src │ ├── app.tsx │ ├── assets │ │ └── fa.js │ ├── components │ │ ├── layout │ │ │ ├── api.ts │ │ │ ├── index.tsx │ │ │ ├── schema.ts │ │ │ └── user_item.tsx │ │ └── renderer │ │ │ ├── icon_selector.tsx │ │ │ └── index.ts │ ├── core │ │ ├── amis.ts │ │ ├── api │ │ │ ├── resource.ts │ │ │ └── utils.ts │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── entry.ts │ │ ├── env.ts │ │ ├── hooks.ts │ │ ├── request.ts │ │ ├── routes.ts │ │ ├── types.ts │ │ ├── user.ts │ │ └── utils.ts │ ├── ovine.tsx │ ├── pages │ │ └── system │ │ │ ├── admin │ │ │ ├── design │ │ │ │ ├── api.ts │ │ │ │ └── index.tsx │ │ │ ├── model │ │ │ │ ├── aside │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── header │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── layout │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styled.ts │ │ │ │ ├── preset.ts │ │ │ │ └── styed.ts │ │ │ ├── page │ │ │ │ ├── index.tsx │ │ │ │ ├── preset.ts │ │ │ │ └── styled.ts │ │ │ ├── publish │ │ │ │ ├── api.ts │ │ │ │ └── index.tsx │ │ │ └── setting │ │ │ │ ├── app │ │ │ │ ├── index.tsx │ │ │ │ └── preset.ts │ │ │ │ └── login │ │ │ │ ├── index.tsx │ │ │ │ └── preset.ts │ │ │ ├── login │ │ │ ├── index.tsx │ │ │ └── styled.ts │ │ │ ├── role │ │ │ ├── index.tsx │ │ │ ├── members.ts │ │ │ ├── preset.ts │ │ │ └── styled.ts │ │ │ ├── self │ │ │ ├── index.tsx │ │ │ └── preset.ts │ │ │ ├── user │ │ │ ├── index.tsx │ │ │ ├── preset.ts │ │ │ └── styled.ts │ │ │ └── welcome │ │ │ └── index.tsx │ ├── public_path.js │ └── styled │ │ └── global.ts │ ├── template.ejs │ ├── tsconfig.json │ ├── typings │ ├── global.d.ts │ └── instance.d.ts │ ├── webpack.config.js │ └── yarn.lock ├── babel.config.js ├── docs └── nginx.conf ├── package.json ├── server └── uniadmin │ ├── base_service.exe │ ├── conf │ ├── app.conf │ ├── app.conf.bak │ ├── db_tables.sql │ └── ovineherd_demo.sql │ ├── controllers │ ├── authorizations.go │ ├── base.go │ ├── categories.go │ ├── configurations.go │ ├── files.go │ ├── orders.go │ ├── products.go │ ├── specifications.go │ └── users.go │ ├── go.mod │ ├── go.sum │ ├── lastupdate.tmp │ ├── main.go │ ├── models │ ├── attributes.go │ ├── authorizations.go │ ├── authorizationsFast.go │ ├── categories.go │ ├── categoriesFast.go │ ├── common.go │ ├── configurations.go │ ├── configurationsFast.go │ ├── filesFast.go │ ├── orders.go │ ├── prices.go │ ├── products.go │ ├── productsFast.go │ ├── relations.go │ ├── specifications.go │ ├── users.go │ └── usersFast.go │ ├── routers │ ├── commentsRouter_controllers.go │ └── router.go │ ├── start.sh │ ├── start_for_linux │ ├── static │ └── upload │ │ └── images │ │ ├── 2020-09-09 │ │ ├── 1061d591036261e82674f0a3548c6ee5.png │ │ ├── 2c0a9af8392cdf3ebe564c26d1f0b226.png │ │ ├── 7f82ac40d555909dfa5ee5c18271351e.jpg │ │ ├── 9229cf2e8e79e3e73029fd54fe86dacf │ │ └── cd231d95557ec35c2873737983b8625e.jpg │ │ ├── 2020-09-10 │ │ ├── 40454e37a46b1e31d54b22612b68ac34.png │ │ └── 4569bed326016ba66a1969ea84b5817f.png │ │ ├── 2020-09-12 │ │ ├── 0703bc8076832b31812ae6b2d51a495f.png │ │ ├── 0e014ffa1dee3d7c03db2607b9c45c6e.png │ │ ├── 86cf84dabe64cf1ecf4a0b4864cd5e97.png │ │ ├── 9c8d970218063bf3e52b01b8de1a2e50.png │ │ ├── a95f8c5a39297ab88a0432875ba1a11f.png │ │ ├── b0a9722bdf0eeeb7bb395617d3551858.png │ │ ├── ceafcf7a2eb6c53f94e6ab99632fcb3e.png │ │ └── e2b5e0044c20015855fb3c54dff957c2.png │ │ ├── 2020-09-20 │ │ └── c351c0bc49f46f1af379448f2cd3368e.png │ │ ├── 2020-10-14 │ │ ├── 77f45257739e61962a5742356f96cb6e.jpg │ │ └── b32c0968ee3d228e0c4dfa12743e0d45.csv │ │ ├── 2020-10-16 │ │ └── 4f9ac9a1814ee6e9366afa219a16b737.jpg │ │ ├── 2020-10-17 │ │ ├── 1092ed22d5f4d953c43f573f1b6bbdc2.jpg │ │ └── 950da7912bcd1fcb72715775f5f50f68.jpg │ │ ├── 2020-10-18 │ │ ├── 1ed2daf1e9cf447449713b1b5042dac5.png │ │ └── 61f61988b82c072c0887a8a93a7d818b.jpg │ │ ├── 2020-10-19 │ │ └── c80cd99a2252c34552b6e607dcc41f4b.png │ │ ├── 2020-10-20 │ │ └── 88605d5b71c41cfcd68d8f6218f5285a.png │ │ ├── 2020-10-21 │ │ └── 34303cf30a9c8e97ece6007de42ccb41.png │ │ ├── 2020-10-22 │ │ └── a531f6043ceb34837a8c60400429bf24.jpg │ │ ├── 2020-10-24 │ │ └── 823b944a59f85804ecbd9a17d8c70d01.png │ │ ├── 2020-10-26 │ │ ├── 0bb4017170c0cdc6da6bb84c32bb1126.png │ │ ├── 23eb577c0b2ef2d1ed8c4e225dd87c76.png │ │ └── 399760b2911a1d17eed55b4396782ad7.png │ │ ├── 2020-10-27 │ │ ├── 189552636343c4c702f95b0bb92e7aca.png │ │ ├── 30b3336fef658422ecc84e35d11afe50.png │ │ ├── 4f6ad2c132404fc8ef0e7f0ad562af35.png │ │ ├── 5673b88da8e504bfb4ed7acf07e77651.png │ │ ├── 6eb62755832f9d60e83b0b01d06844dc.png │ │ ├── 9d52b4a788f49d271fc53ce084b31c2b.png │ │ ├── a8cd836de1c1b5576d3ee5c18755ec1f.png │ │ └── f97593ff9e291baafd67c01d20685b07.png │ │ ├── 2020-10-28 │ │ └── ccbf3752118d67f1edda4e3469738a74.jpg │ │ ├── 2020-11-01 │ │ └── 65b97921a115185a7f33cc021736f01f.png │ │ ├── 2020-11-16 │ │ ├── 0cca6eb2ca1d8c7910215ecaa0e88a28.png │ │ └── ec6955a5de68b6b682dfa0f36adb7ed7.jpg │ │ ├── 2020-11-21 │ │ ├── 23aac754be6f7560f6e94067473a13b6.png │ │ ├── 342333331527701a09276687abb46bd2.png │ │ ├── 5486130dea20aefdecffc43755d72402.png │ │ ├── 635bc1fffa67600d6a811ddd98bd333e.png │ │ ├── 99a5e7d2bc6b87105635907745221676.png │ │ ├── d4f51422fb96ce42e798f02e9d355a63.png │ │ └── ebe73d58d606741bc8e94e5d0160fa3e.png │ │ ├── 2021-04-03 │ │ ├── 13283679845c33bb17847e0d0c547bbb │ │ ├── 6451846a26caa989f324c8f93cfa5fdf.png │ │ ├── 6e22afbb368b3914ff79454d747bb0fa.jpeg │ │ ├── 6edc09ba5e04d6ba9fbff7f901708b3b │ │ ├── 760e7cfb3c376e8a7ca10c6e85efc178.png │ │ ├── 9136d96d77cc70f7ca59b4705dd48de8.png │ │ ├── 93f4d5b9fc51de2a2e992a8240d440df │ │ ├── b2774977079a2e1a8cd596c47ee47ffc │ │ ├── c7b06ec0cc0735f4d8d79c09fba7b543 │ │ ├── d62a37dc9f52942334261a972f98fe31 │ │ ├── de9502d576f5e6709532c0443776eecc │ │ ├── f9abad07066e6a31eda097090f378996 │ │ └── fadd012d175ff6e81dcc25d3affa18d1 │ │ ├── 2021-04-04 │ │ ├── 10b785a919a4c65f9bbc590b42b48fe8.jpeg │ │ ├── 51caf9b46147b36a337665828c110af6.jpeg │ │ ├── 5873aeccbc5e4e4ea2a392f1e7f69f18.jpeg │ │ ├── 75a7824afa2bdb7fa10a11a742efbf01 │ │ ├── 84d9c4f265cad3a2434335ffc3d77217.jpg │ │ ├── b102642df8a806087aefd67e0e55ea4b │ │ ├── b5fe9cce3eaa024fd9d4199b6847da62 │ │ ├── bdef898f8f9b4b9cf99e6d0683d53395.jpeg │ │ └── db624ab99ba1572cc5df2317cdb259b6 │ │ ├── 2021-04-05 │ │ └── 4fa712a63231139e10af4ea30feb33aa │ │ ├── 2021-04-15 │ │ └── 204162b3a3bc591be12a1ba19e9cfffb │ │ ├── 2021-05-07 │ │ └── c75fcb44678cdb8a491169770375bb4f │ │ ├── 2021-05-24 │ │ ├── 092026167f7b049b59b56c996f10e7c0 │ │ └── 46614ea012cd63e724de8d2d568fdf8d │ │ ├── 2021-10-01 │ │ ├── 0f2057b0f53573f92c48f0b862dcbd50 │ │ ├── 356b877d1506e804fcf6caa537e4ab01 │ │ ├── 5640c84a9a405fafb54d88ee11a683d9 │ │ └── b34714fb4151e80e5c75dd951dde826a │ │ ├── 6c8ca56dcd913463d6262bf8ce57ae83.png │ │ ├── DCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png │ │ └── imagesDCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png │ └── swagger │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── index.html │ ├── oauth2-redirect.html │ ├── swagger-ui-bundle.js │ ├── swagger-ui-bundle.js.map │ ├── swagger-ui-standalone-preset.js │ ├── swagger-ui-standalone-preset.js.map │ ├── swagger-ui.css │ ├── swagger-ui.css.map │ ├── swagger-ui.js │ ├── swagger-ui.js.map │ ├── swagger.json │ └── swagger.yml ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.eslintignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/README.md -------------------------------------------------------------------------------- /apps/document/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/document/doc.md -------------------------------------------------------------------------------- /apps/main/README.md: -------------------------------------------------------------------------------- 1 | ### Main 2 | 3 | 入口除了核心通信,以及一些全局状态以外,不做任何事,降低主入口复杂度。 4 | -------------------------------------------------------------------------------- /apps/main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/package.json -------------------------------------------------------------------------------- /apps/main/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/src/index.js -------------------------------------------------------------------------------- /apps/main/src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/src/index.less -------------------------------------------------------------------------------- /apps/main/src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/src/render.js -------------------------------------------------------------------------------- /apps/main/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/src/utils.js -------------------------------------------------------------------------------- /apps/main/template/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/template/index.ejs -------------------------------------------------------------------------------- /apps/main/template/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/template/loader.html -------------------------------------------------------------------------------- /apps/main/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/webpack.config.js -------------------------------------------------------------------------------- /apps/main/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/main/yarn.lock -------------------------------------------------------------------------------- /apps/platform/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/.editorconfig -------------------------------------------------------------------------------- /apps/platform/.eslintignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | 3 | dist 4 | node_modules 5 | .ovine 6 | 7 | /static/ 8 | -------------------------------------------------------------------------------- /apps/platform/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/.eslintrc.js -------------------------------------------------------------------------------- /apps/platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/.gitignore -------------------------------------------------------------------------------- /apps/platform/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .ovine 4 | 5 | /static/ -------------------------------------------------------------------------------- /apps/platform/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/.prettierrc -------------------------------------------------------------------------------- /apps/platform/README.md: -------------------------------------------------------------------------------- 1 | ## Ovine Platform 平台相关的功能 2 | 3 | ##### TODO: 4 | 5 | - 每次重新登录/刷新页面, 需要同步更新权限 6 | -------------------------------------------------------------------------------- /apps/platform/ovine.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/ovine.config.js -------------------------------------------------------------------------------- /apps/platform/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/package.json -------------------------------------------------------------------------------- /apps/platform/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/app.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/app/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/app/context.ts -------------------------------------------------------------------------------- /apps/platform/src/components/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/app/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/app/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/app/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/layout/header.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/layout/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/layout/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/layout/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/components/layout/user_item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/layout/user_item.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/section/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/components/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/components/tabs/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/core/amis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/amis.ts -------------------------------------------------------------------------------- /apps/platform/src/core/api/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/api/resource.ts -------------------------------------------------------------------------------- /apps/platform/src/core/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/api/utils.ts -------------------------------------------------------------------------------- /apps/platform/src/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/constants.ts -------------------------------------------------------------------------------- /apps/platform/src/core/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/env.ts -------------------------------------------------------------------------------- /apps/platform/src/core/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/hooks.tsx -------------------------------------------------------------------------------- /apps/platform/src/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/request.ts -------------------------------------------------------------------------------- /apps/platform/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/types.ts -------------------------------------------------------------------------------- /apps/platform/src/core/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/user.ts -------------------------------------------------------------------------------- /apps/platform/src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/core/utils.ts -------------------------------------------------------------------------------- /apps/platform/src/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/icons/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/icons/left_top_mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/icons/left_top_mark.svg -------------------------------------------------------------------------------- /apps/platform/src/pages/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/login/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/login/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/login/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/application/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/application/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/application/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/application/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/application/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/application/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/application/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/application/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/members.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/role/tpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/role/tpl.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/setting/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/setting/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/setting/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/setting/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/setting/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/setting/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/setting/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/team/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/team/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/org/team/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/team/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/team/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/team/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/org/team/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/org/team/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/register/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/register/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/register/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/register/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/register/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/register/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/register/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/dashbord/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/dashbord/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/org/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/org/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/org/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/org/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/org/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/org/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/org/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/org/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/setting/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/setting/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/setting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/setting/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/setting/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/setting/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/setting/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/setting/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/user/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/user/api.ts -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/user/index.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/user/schema.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/user/schema.tsx -------------------------------------------------------------------------------- /apps/platform/src/pages/sys/user/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/pages/sys/user/styled.ts -------------------------------------------------------------------------------- /apps/platform/src/public_path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/public_path.js -------------------------------------------------------------------------------- /apps/platform/src/routes/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/routes/hooks.ts -------------------------------------------------------------------------------- /apps/platform/src/routes/org.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/routes/org.tsx -------------------------------------------------------------------------------- /apps/platform/src/routes/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/routes/route.tsx -------------------------------------------------------------------------------- /apps/platform/src/routes/sys.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/src/routes/sys.tsx -------------------------------------------------------------------------------- /apps/platform/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/template.ejs -------------------------------------------------------------------------------- /apps/platform/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/tsconfig.json -------------------------------------------------------------------------------- /apps/platform/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/typings/global.d.ts -------------------------------------------------------------------------------- /apps/platform/typings/instance.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/typings/instance.d.ts -------------------------------------------------------------------------------- /apps/platform/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/webpack.config.js -------------------------------------------------------------------------------- /apps/platform/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/platform/yarn.lock -------------------------------------------------------------------------------- /apps/rubik/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/.editorconfig -------------------------------------------------------------------------------- /apps/rubik/.eslintignore: -------------------------------------------------------------------------------- 1 | __tests__ 2 | 3 | dist 4 | node_modules 5 | .ovine 6 | 7 | /static/ 8 | -------------------------------------------------------------------------------- /apps/rubik/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/.eslintrc.js -------------------------------------------------------------------------------- /apps/rubik/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/.gitignore -------------------------------------------------------------------------------- /apps/rubik/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .ovine 4 | 5 | /static/ -------------------------------------------------------------------------------- /apps/rubik/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/.prettierrc -------------------------------------------------------------------------------- /apps/rubik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/README.md -------------------------------------------------------------------------------- /apps/rubik/ovine.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/ovine.config.js -------------------------------------------------------------------------------- /apps/rubik/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/package.json -------------------------------------------------------------------------------- /apps/rubik/scss/themes/_antd.scss: -------------------------------------------------------------------------------- 1 | // amis antd 主题变量 重写 2 | -------------------------------------------------------------------------------- /apps/rubik/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/app.tsx -------------------------------------------------------------------------------- /apps/rubik/src/assets/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/assets/fa.js -------------------------------------------------------------------------------- /apps/rubik/src/components/layout/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/components/layout/api.ts -------------------------------------------------------------------------------- /apps/rubik/src/components/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/components/layout/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/components/layout/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/components/layout/schema.ts -------------------------------------------------------------------------------- /apps/rubik/src/components/layout/user_item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/components/layout/user_item.tsx -------------------------------------------------------------------------------- /apps/rubik/src/components/renderer/icon_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/components/renderer/icon_selector.tsx -------------------------------------------------------------------------------- /apps/rubik/src/components/renderer/index.ts: -------------------------------------------------------------------------------- 1 | import './icon_selector' 2 | -------------------------------------------------------------------------------- /apps/rubik/src/core/amis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/amis.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/api/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/api/resource.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/api/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/api/utils.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/common.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/constants.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/entry.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/env.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/hooks.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/rubik/src/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/request.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/routes.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/types.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/user.ts -------------------------------------------------------------------------------- /apps/rubik/src/core/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/core/utils.ts -------------------------------------------------------------------------------- /apps/rubik/src/ovine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/ovine.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/design/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/design/api.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/design/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/design/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/aside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/aside/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/aside/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/aside/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/header/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/header/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/header/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/layout/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/layout/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/model/layout/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/preset.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/model/styed.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/page/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/page/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/page/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/page/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/page/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/publish/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/publish/api.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/publish/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/publish/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/setting/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/setting/app/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/setting/app/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/setting/app/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/setting/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/setting/login/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/admin/setting/login/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/admin/setting/login/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/login/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/login/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/login/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/role/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/role/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/role/members.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/role/members.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/role/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/role/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/role/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/role/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/self/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/self/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/self/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/self/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/user/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/user/preset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/user/preset.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/user/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/user/styled.ts -------------------------------------------------------------------------------- /apps/rubik/src/pages/system/welcome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/pages/system/welcome/index.tsx -------------------------------------------------------------------------------- /apps/rubik/src/public_path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/public_path.js -------------------------------------------------------------------------------- /apps/rubik/src/styled/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/src/styled/global.ts -------------------------------------------------------------------------------- /apps/rubik/template.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/template.ejs -------------------------------------------------------------------------------- /apps/rubik/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/tsconfig.json -------------------------------------------------------------------------------- /apps/rubik/typings/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/typings/global.d.ts -------------------------------------------------------------------------------- /apps/rubik/typings/instance.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/typings/instance.d.ts -------------------------------------------------------------------------------- /apps/rubik/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/webpack.config.js -------------------------------------------------------------------------------- /apps/rubik/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/apps/rubik/yarn.lock -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/nginx.conf: -------------------------------------------------------------------------------- 1 | ### nginx 相关的配置,仅供参考使用 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/package.json -------------------------------------------------------------------------------- /server/uniadmin/base_service.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/base_service.exe -------------------------------------------------------------------------------- /server/uniadmin/conf/app.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/conf/app.conf -------------------------------------------------------------------------------- /server/uniadmin/conf/app.conf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/conf/app.conf.bak -------------------------------------------------------------------------------- /server/uniadmin/conf/db_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/conf/db_tables.sql -------------------------------------------------------------------------------- /server/uniadmin/conf/ovineherd_demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/conf/ovineherd_demo.sql -------------------------------------------------------------------------------- /server/uniadmin/controllers/authorizations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/authorizations.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/base.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/categories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/categories.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/configurations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/configurations.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/files.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/orders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/orders.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/products.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/specifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/specifications.go -------------------------------------------------------------------------------- /server/uniadmin/controllers/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/controllers/users.go -------------------------------------------------------------------------------- /server/uniadmin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/go.mod -------------------------------------------------------------------------------- /server/uniadmin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/go.sum -------------------------------------------------------------------------------- /server/uniadmin/lastupdate.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/lastupdate.tmp -------------------------------------------------------------------------------- /server/uniadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/main.go -------------------------------------------------------------------------------- /server/uniadmin/models/attributes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/attributes.go -------------------------------------------------------------------------------- /server/uniadmin/models/authorizations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/authorizations.go -------------------------------------------------------------------------------- /server/uniadmin/models/authorizationsFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/authorizationsFast.go -------------------------------------------------------------------------------- /server/uniadmin/models/categories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/categories.go -------------------------------------------------------------------------------- /server/uniadmin/models/categoriesFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/categoriesFast.go -------------------------------------------------------------------------------- /server/uniadmin/models/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/common.go -------------------------------------------------------------------------------- /server/uniadmin/models/configurations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/configurations.go -------------------------------------------------------------------------------- /server/uniadmin/models/configurationsFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/configurationsFast.go -------------------------------------------------------------------------------- /server/uniadmin/models/filesFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/filesFast.go -------------------------------------------------------------------------------- /server/uniadmin/models/orders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/orders.go -------------------------------------------------------------------------------- /server/uniadmin/models/prices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/prices.go -------------------------------------------------------------------------------- /server/uniadmin/models/products.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/products.go -------------------------------------------------------------------------------- /server/uniadmin/models/productsFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/productsFast.go -------------------------------------------------------------------------------- /server/uniadmin/models/relations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/relations.go -------------------------------------------------------------------------------- /server/uniadmin/models/specifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/specifications.go -------------------------------------------------------------------------------- /server/uniadmin/models/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/users.go -------------------------------------------------------------------------------- /server/uniadmin/models/usersFast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/models/usersFast.go -------------------------------------------------------------------------------- /server/uniadmin/routers/commentsRouter_controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/routers/commentsRouter_controllers.go -------------------------------------------------------------------------------- /server/uniadmin/routers/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/routers/router.go -------------------------------------------------------------------------------- /server/uniadmin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/start.sh -------------------------------------------------------------------------------- /server/uniadmin/start_for_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/start_for_linux -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-09/1061d591036261e82674f0a3548c6ee5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-09/1061d591036261e82674f0a3548c6ee5.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-09/2c0a9af8392cdf3ebe564c26d1f0b226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-09/2c0a9af8392cdf3ebe564c26d1f0b226.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-09/7f82ac40d555909dfa5ee5c18271351e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-09/7f82ac40d555909dfa5ee5c18271351e.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-09/9229cf2e8e79e3e73029fd54fe86dacf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-09/9229cf2e8e79e3e73029fd54fe86dacf -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-09/cd231d95557ec35c2873737983b8625e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-09/cd231d95557ec35c2873737983b8625e.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-10/40454e37a46b1e31d54b22612b68ac34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-10/40454e37a46b1e31d54b22612b68ac34.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-10/4569bed326016ba66a1969ea84b5817f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-10/4569bed326016ba66a1969ea84b5817f.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/0703bc8076832b31812ae6b2d51a495f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/0703bc8076832b31812ae6b2d51a495f.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/0e014ffa1dee3d7c03db2607b9c45c6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/0e014ffa1dee3d7c03db2607b9c45c6e.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/86cf84dabe64cf1ecf4a0b4864cd5e97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/86cf84dabe64cf1ecf4a0b4864cd5e97.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/9c8d970218063bf3e52b01b8de1a2e50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/9c8d970218063bf3e52b01b8de1a2e50.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/a95f8c5a39297ab88a0432875ba1a11f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/a95f8c5a39297ab88a0432875ba1a11f.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/b0a9722bdf0eeeb7bb395617d3551858.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/b0a9722bdf0eeeb7bb395617d3551858.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/ceafcf7a2eb6c53f94e6ab99632fcb3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/ceafcf7a2eb6c53f94e6ab99632fcb3e.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-12/e2b5e0044c20015855fb3c54dff957c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-12/e2b5e0044c20015855fb3c54dff957c2.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-09-20/c351c0bc49f46f1af379448f2cd3368e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-09-20/c351c0bc49f46f1af379448f2cd3368e.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-14/77f45257739e61962a5742356f96cb6e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-14/77f45257739e61962a5742356f96cb6e.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-14/b32c0968ee3d228e0c4dfa12743e0d45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-14/b32c0968ee3d228e0c4dfa12743e0d45.csv -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-16/4f9ac9a1814ee6e9366afa219a16b737.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-16/4f9ac9a1814ee6e9366afa219a16b737.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-17/1092ed22d5f4d953c43f573f1b6bbdc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-17/1092ed22d5f4d953c43f573f1b6bbdc2.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-17/950da7912bcd1fcb72715775f5f50f68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-17/950da7912bcd1fcb72715775f5f50f68.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-18/1ed2daf1e9cf447449713b1b5042dac5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-18/1ed2daf1e9cf447449713b1b5042dac5.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-18/61f61988b82c072c0887a8a93a7d818b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-18/61f61988b82c072c0887a8a93a7d818b.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-19/c80cd99a2252c34552b6e607dcc41f4b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-19/c80cd99a2252c34552b6e607dcc41f4b.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-20/88605d5b71c41cfcd68d8f6218f5285a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-20/88605d5b71c41cfcd68d8f6218f5285a.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-21/34303cf30a9c8e97ece6007de42ccb41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-21/34303cf30a9c8e97ece6007de42ccb41.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-22/a531f6043ceb34837a8c60400429bf24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-22/a531f6043ceb34837a8c60400429bf24.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-24/823b944a59f85804ecbd9a17d8c70d01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-24/823b944a59f85804ecbd9a17d8c70d01.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-26/0bb4017170c0cdc6da6bb84c32bb1126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-26/0bb4017170c0cdc6da6bb84c32bb1126.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-26/23eb577c0b2ef2d1ed8c4e225dd87c76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-26/23eb577c0b2ef2d1ed8c4e225dd87c76.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-26/399760b2911a1d17eed55b4396782ad7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-26/399760b2911a1d17eed55b4396782ad7.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/189552636343c4c702f95b0bb92e7aca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/189552636343c4c702f95b0bb92e7aca.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/30b3336fef658422ecc84e35d11afe50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/30b3336fef658422ecc84e35d11afe50.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/4f6ad2c132404fc8ef0e7f0ad562af35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/4f6ad2c132404fc8ef0e7f0ad562af35.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/5673b88da8e504bfb4ed7acf07e77651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/5673b88da8e504bfb4ed7acf07e77651.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/6eb62755832f9d60e83b0b01d06844dc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/6eb62755832f9d60e83b0b01d06844dc.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/9d52b4a788f49d271fc53ce084b31c2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/9d52b4a788f49d271fc53ce084b31c2b.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/a8cd836de1c1b5576d3ee5c18755ec1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/a8cd836de1c1b5576d3ee5c18755ec1f.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-27/f97593ff9e291baafd67c01d20685b07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-27/f97593ff9e291baafd67c01d20685b07.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-10-28/ccbf3752118d67f1edda4e3469738a74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-10-28/ccbf3752118d67f1edda4e3469738a74.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-01/65b97921a115185a7f33cc021736f01f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-01/65b97921a115185a7f33cc021736f01f.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-16/0cca6eb2ca1d8c7910215ecaa0e88a28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-16/0cca6eb2ca1d8c7910215ecaa0e88a28.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-16/ec6955a5de68b6b682dfa0f36adb7ed7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-16/ec6955a5de68b6b682dfa0f36adb7ed7.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/23aac754be6f7560f6e94067473a13b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/23aac754be6f7560f6e94067473a13b6.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/342333331527701a09276687abb46bd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/342333331527701a09276687abb46bd2.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/5486130dea20aefdecffc43755d72402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/5486130dea20aefdecffc43755d72402.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/635bc1fffa67600d6a811ddd98bd333e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/635bc1fffa67600d6a811ddd98bd333e.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/99a5e7d2bc6b87105635907745221676.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/99a5e7d2bc6b87105635907745221676.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/d4f51422fb96ce42e798f02e9d355a63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/d4f51422fb96ce42e798f02e9d355a63.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2020-11-21/ebe73d58d606741bc8e94e5d0160fa3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2020-11-21/ebe73d58d606741bc8e94e5d0160fa3e.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/13283679845c33bb17847e0d0c547bbb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/13283679845c33bb17847e0d0c547bbb -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/6451846a26caa989f324c8f93cfa5fdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/6451846a26caa989f324c8f93cfa5fdf.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/6e22afbb368b3914ff79454d747bb0fa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/6e22afbb368b3914ff79454d747bb0fa.jpeg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/6edc09ba5e04d6ba9fbff7f901708b3b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/6edc09ba5e04d6ba9fbff7f901708b3b -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/760e7cfb3c376e8a7ca10c6e85efc178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/760e7cfb3c376e8a7ca10c6e85efc178.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/9136d96d77cc70f7ca59b4705dd48de8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/9136d96d77cc70f7ca59b4705dd48de8.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/93f4d5b9fc51de2a2e992a8240d440df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/93f4d5b9fc51de2a2e992a8240d440df -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/b2774977079a2e1a8cd596c47ee47ffc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/b2774977079a2e1a8cd596c47ee47ffc -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/c7b06ec0cc0735f4d8d79c09fba7b543: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/c7b06ec0cc0735f4d8d79c09fba7b543 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/d62a37dc9f52942334261a972f98fe31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/d62a37dc9f52942334261a972f98fe31 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/de9502d576f5e6709532c0443776eecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/de9502d576f5e6709532c0443776eecc -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/f9abad07066e6a31eda097090f378996: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/f9abad07066e6a31eda097090f378996 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-03/fadd012d175ff6e81dcc25d3affa18d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-03/fadd012d175ff6e81dcc25d3affa18d1 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/10b785a919a4c65f9bbc590b42b48fe8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/10b785a919a4c65f9bbc590b42b48fe8.jpeg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/51caf9b46147b36a337665828c110af6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/51caf9b46147b36a337665828c110af6.jpeg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/5873aeccbc5e4e4ea2a392f1e7f69f18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/5873aeccbc5e4e4ea2a392f1e7f69f18.jpeg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/75a7824afa2bdb7fa10a11a742efbf01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/75a7824afa2bdb7fa10a11a742efbf01 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/84d9c4f265cad3a2434335ffc3d77217.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/84d9c4f265cad3a2434335ffc3d77217.jpg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/b102642df8a806087aefd67e0e55ea4b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/b102642df8a806087aefd67e0e55ea4b -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/b5fe9cce3eaa024fd9d4199b6847da62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/b5fe9cce3eaa024fd9d4199b6847da62 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/bdef898f8f9b4b9cf99e6d0683d53395.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/bdef898f8f9b4b9cf99e6d0683d53395.jpeg -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-04/db624ab99ba1572cc5df2317cdb259b6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-04/db624ab99ba1572cc5df2317cdb259b6 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-05/4fa712a63231139e10af4ea30feb33aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-05/4fa712a63231139e10af4ea30feb33aa -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-04-15/204162b3a3bc591be12a1ba19e9cfffb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-04-15/204162b3a3bc591be12a1ba19e9cfffb -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-05-07/c75fcb44678cdb8a491169770375bb4f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-05-07/c75fcb44678cdb8a491169770375bb4f -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-05-24/092026167f7b049b59b56c996f10e7c0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-05-24/092026167f7b049b59b56c996f10e7c0 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-05-24/46614ea012cd63e724de8d2d568fdf8d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-05-24/46614ea012cd63e724de8d2d568fdf8d -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-10-01/0f2057b0f53573f92c48f0b862dcbd50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-10-01/0f2057b0f53573f92c48f0b862dcbd50 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-10-01/356b877d1506e804fcf6caa537e4ab01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-10-01/356b877d1506e804fcf6caa537e4ab01 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-10-01/5640c84a9a405fafb54d88ee11a683d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-10-01/5640c84a9a405fafb54d88ee11a683d9 -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/2021-10-01/b34714fb4151e80e5c75dd951dde826a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/2021-10-01/b34714fb4151e80e5c75dd951dde826a -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/6c8ca56dcd913463d6262bf8ce57ae83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/6c8ca56dcd913463d6262bf8ce57ae83.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/DCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/DCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png -------------------------------------------------------------------------------- /server/uniadmin/static/upload/images/imagesDCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/static/upload/images/imagesDCEC36EB-9487-4f31-94BB-E24D2D00D0F3.png -------------------------------------------------------------------------------- /server/uniadmin/swagger/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/favicon-16x16.png -------------------------------------------------------------------------------- /server/uniadmin/swagger/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/favicon-32x32.png -------------------------------------------------------------------------------- /server/uniadmin/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/index.html -------------------------------------------------------------------------------- /server/uniadmin/swagger/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/oauth2-redirect.html -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui-bundle.js -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui.css -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui.css.map -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui.js -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger-ui.js.map -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger.json -------------------------------------------------------------------------------- /server/uniadmin/swagger/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/server/uniadmin/swagger/swagger.yml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ovineio/ovineherd/HEAD/yarn.lock --------------------------------------------------------------------------------