Compare commits

...

8 Commits

Author SHA1 Message Date
Râu Cao 0bece35c44
Update README 2023-09-20 22:41:57 +02:00
Basti 9c48d30159
Update README 2021-02-25 19:52:16 +01:00
Basti a016b68355
Adjust resource limits
continuous-integration/drone/push Build is running Details
2019-03-04 13:52:35 +07:00
Basti afdef57808
Lower memory limit 2019-03-04 13:22:09 +07:00
Basti 4a3095625c
Add resource limits for Drone k8s jobs
continuous-integration/drone/push Build is running Details
2019-03-04 13:19:03 +07:00
Basti f1fc68e7bf
Fix Docker tag syntax
continuous-integration/drone/push Build was killed Details
2019-03-03 13:36:34 +07:00
Basti 825bbd63ea
Add Drone CI config
continuous-integration/drone/push Build was killed Details
2019-03-03 13:23:54 +07:00
Basti 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
developers and power users.
Inspektor is beta software and currently under development. You're invited to
contribute and/or give feedback: https://gitlab.com/skddc/inspektor
You're invited to contribute to this app and/or submit feedback to improve it. Please use the
[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
@ -17,9 +20,9 @@ contribute and/or give feedback: https://gitlab.com/skddc/inspektor
* [x] Render JSON content tree view (optional source view)
* [x] Delete documents
* [x] Edit JSON content in tree view
* [ ] Delete directories
* [x] Delete directories
* [ ] 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 directories (and enclosed files)
* [ ] Loading indicator for any view change that loads remote data

14
package-lock.json generated
View File

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

View File

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