8 Commits

Author SHA1 Message Date
Râu Cao
0bece35c44 Update README 2023-09-20 22:41:57 +02:00
9c48d30159 Update README 2021-02-25 19:52:16 +01:00
a016b68355 Adjust resource limits
Some checks are pending
continuous-integration/drone/push Build is running
2019-03-04 13:52:35 +07:00
afdef57808 Lower memory limit 2019-03-04 13:22:09 +07:00
4a3095625c Add resource limits for Drone k8s jobs
Some checks are pending
continuous-integration/drone/push Build is running
2019-03-04 13:19:03 +07:00
f1fc68e7bf Fix Docker tag syntax
Some checks failed
continuous-integration/drone/push Build was killed
2019-03-03 13:36:34 +07:00
825bbd63ea Add Drone CI config
Some checks failed
continuous-integration/drone/push Build was killed
2019-03-03 13:23:54 +07:00
25edfa775b Update rs.js 2018-12-09 09:12:50 +00:00
4 changed files with 31 additions and 12 deletions

16
.drone.yml Normal file
View File

@@ -0,0 +1,16 @@
kind: pipeline
name: test
steps:
- name: test
image: colthreepv/node-chrome:8
commands:
- npm install
- npm test
resources:
requests:
cpu: 250m
memory: 256Mi
limits:
cpu: 250m
memory: 256Mi

View File

@@ -4,8 +4,11 @@ Inspektor is a simple file browser for inspecting the contents of a
[remoteStorage](https://remotestorage.io) account. It is intended for RS app [remoteStorage](https://remotestorage.io) account. It is intended for RS app
developers and power users. developers and power users.
Inspektor is beta software and currently under development. You're invited to You're invited to contribute to this app and/or submit feedback to improve it. Please use the
contribute and/or give feedback: https://gitlab.com/skddc/inspektor [RS Discourse forums](https://community.remotestorage.io/t/rs-inspektor-a-simple-remotestorage-file-browser/428)
to post issues or ideas, and/or to request an account for gitea.kosmos.org
if you want to submit pull requests directly to the upstream repository. You
may also submit Git patches via [e-mail](mailto:raucao@kip.pe).
## Features ## Features
@@ -17,9 +20,9 @@ contribute and/or give feedback: https://gitlab.com/skddc/inspektor
* [x] Render JSON content tree view (optional source view) * [x] Render JSON content tree view (optional source view)
* [x] Delete documents * [x] Delete documents
* [x] Edit JSON content in tree view * [x] Edit JSON content in tree view
* [ ] Delete directories * [x] Delete directories
* [ ] Edit content source * [ ] Edit content source
* [ ] Render other types content (e.g. audio and video) * [ ] Render other types of content (e.g. audio and video)
* [ ] Copy/move documents * [ ] Copy/move documents
* [ ] Copy/move directories (and enclosed files) * [ ] Copy/move directories (and enclosed files)
* [ ] Loading indicator for any view change that loads remote data * [ ] Loading indicator for any view change that loads remote data

14
package-lock.json generated
View File

@@ -9413,13 +9413,13 @@
"dev": true "dev": true
}, },
"remotestoragejs": { "remotestoragejs": {
"version": "1.0.3", "version": "1.1.0",
"resolved": "https://registry.npmjs.org/remotestoragejs/-/remotestoragejs-1.0.3.tgz", "resolved": "https://registry.npmjs.org/remotestoragejs/-/remotestoragejs-1.1.0.tgz",
"integrity": "sha512-es03OF5+nZ+sRFgxD97qLRApbBs+rdZ5H4aOH5piI4Cz1Y+3PL+jumdZ+w1WDb3XlPSRXr31VhBHGadM1q2n6g==", "integrity": "sha512-No4HnSjrHYRv9m2UWGDPJjb0dyOC0F1Lhfr32dNw2PdQIXlp7pg7eJOGw/hHR6SPBkbkl6P0YEkhiFuSH7yY6g==",
"dev": true, "dev": true,
"requires": { "requires": {
"tv4": "1.3.0", "tv4": "1.3.0",
"webfinger.js": "2.6.6", "webfinger.js": "2.7.0",
"xhr2": "0.1.4" "xhr2": "0.1.4"
} }
}, },
@@ -11211,9 +11211,9 @@
"dev": true "dev": true
}, },
"webfinger.js": { "webfinger.js": {
"version": "2.6.6", "version": "2.7.0",
"resolved": "https://registry.npmjs.org/webfinger.js/-/webfinger.js-2.6.6.tgz", "resolved": "https://registry.npmjs.org/webfinger.js/-/webfinger.js-2.7.0.tgz",
"integrity": "sha512-dQpuL01XtluQ9Ndgu62o3pEmIe/ssDoIE0CQsOyavGl04xyHal+Ge4gFerw5V0BFoLTQpD8ZZqaDzb43hG9atw==", "integrity": "sha512-l+UtsuV4zrBKyVAj9VCtwWgscTgadCsdGgL1OvbV102cvydWwJCGXlFIXauzWLzfheIDHfPNRWfgMuwyC6ZfIA==",
"dev": true, "dev": true,
"requires": { "requires": {
"xhr2": "0.1.4" "xhr2": "0.1.4"

View File

@@ -45,7 +45,7 @@
"json-tree-view": "github:skddc/json-tree-view#bugfix/setters", "json-tree-view": "github:skddc/json-tree-view#bugfix/setters",
"loader.js": "^4.2.3", "loader.js": "^4.2.3",
"remotestorage-widget": "^1.3.0", "remotestorage-widget": "^1.3.0",
"remotestoragejs": "^1.0.3" "remotestoragejs": "^1.1.0"
}, },
"engines": { "engines": {
"node": "6.* || >= 7.*" "node": "6.* || >= 7.*"