{"id":13555218,"url":"https://github.com/mnutt/davros","last_synced_at":"2026-03-03T23:04:49.276Z","repository":{"id":1912680,"uuid":"38942862","full_name":"mnutt/davros","owner":"mnutt","description":"Personal file storage server","archived":false,"fork":false,"pushed_at":"2023-03-17T14:38:58.000Z","size":9789,"stargazers_count":299,"open_issues_count":58,"forks_count":35,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-03-31T04:06:27.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mnutt.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2015-07-11T22:42:43.000Z","updated_at":"2025-03-01T19:50:58.000Z","dependencies_parsed_at":"2023-07-06T05:54:25.110Z","dependency_job_id":null,"html_url":"https://github.com/mnutt/davros","commit_stats":{"total_commits":504,"total_committers":7,"mean_commits":72.0,"dds":0.02777777777777779,"last_synced_commit":"6ac11a4ba89dd997b9fcb7c47728e337404edce4"},"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mnutt%2Fdavros","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mnutt%2Fdavros/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mnutt%2Fdavros/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mnutt%2Fdavros/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mnutt","download_url":"https://codeload.github.com/mnutt/davros/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247595335,"owners_count":20963943,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-01T12:03:05.549Z","updated_at":"2026-03-03T23:04:44.246Z","avatar_url":"https://github.com/mnutt.png","language":"JavaScript","funding_links":[],"categories":["PWA and online apps","JavaScript","others"],"sub_categories":["Docker images"],"readme":"# Davros File Storage\n\nDavros lets you store all of your files in the cloud and sync them between your devices.\n\n![Screenshot of Davros](/public/images/screenshot.png)\n\n[![Try Live Demo](https://cdn.rawgit.com/mnutt/davros/master/public/images/try-live.svg)](https://oasis.sandstorm.io/appdemo/8aspz4sfjnp8u89000mh2v1xrdyx97ytn8hq71mdzv4p4d8n0n3h)\n\n## Prerequisites\n\nDavros is built to run inside [Sandstorm](https://sandstorm.io), an open source web application platform. You can either [run Sandstorm yourself](https://sandstorm.io/install/) or [let someone else host it for you](https://oasis.sandstorm.io/).\n\n## Installation\n\n- [Set up Sandstorm](https://sandstorm.io/install/)\n- Download the [latest release](https://github.com/mnutt/davros/releases) and upload it to your Sandstorm server.\n\n## Development\n\nDavros is built using Node.js and Ember.js. To run locally, you'll need to install node.js. We also recommend that you use yarn to install dependencies since that will lock versions to the ones that are\nused during deployment.\n\nTo install yarn run `npm install -g yarn`\nThen:\n\n- `yarn install`\n- `yarn dev --port=3009`\n\nAt this point you'll have Davros running at `http://localhost:3009`. Substitute `3009` for another port if you want. Note that running Davros this way is not particularly safe; it relies completely on Sandstorm for user management and authentication.\n\nIn development, you can connect your desktop client to http://localhost:3009/ with any username and password.\n\n## Sandstorm Development\n\nA few parts of Davros are dependent on running within Sandstorm, such as the authentication instructions on the Clients page. To run inside Sandstorm, first get [vagrant-spk](https://github.com/sandstorm-io/vagrant-spk). Then, within the Davros directory, run\n\n    vagrant-spk vm up\n    vagrant-spk dev\n\nWhile this works it requires that you re-run `vagrant-spk dev` manually anytime you make a change. To\nhave this done automatically consider using [ember-cli-vagrant-spk](https://github.com/mnutt/ember-cli-vagrant-spk) instead which will monitor your filesystem for changes and restart the server\nfor you.\n\n### Linting\n\n- `yarn lint:hbs`\n- `yarn lint:js`\n- `yarn lint:js -- --fix`\n\n### Releasing\n\nReleasing an app is a little bit convoluted. This assumes you are on a non-linux machine, running sandstorm via vagrant-spk. On linux, you might be able to get away with skipping step 1.\n\n1. `vagrant-spk vm ssh` then `cd /opt/app \u0026\u0026 rm -rf node_modules/sharp \u0026\u0026 yarn` -- this is because the `sharp` module has native components that need to be built on linux\n2. Edit `.sandstorm/sandstorm-pkgdef.capnp` and update `appVersion` and `appMarketingVersion`. Bump major version for major breaking changes, minor version for significant new features, and patch version for tiny features and bugfixes.\n3. Edit `CHANGELOG.md` and add a section with your new version.\n4. Run `yarn build` to build the UI.\n5. Run `yarn build-server` to build the backend.\n6. Run `vagrant-spk dev` and navigate around the app testing various functionality. This is generally good to do, but when you exit, this will also update `.sandstorm/sandstorm-files.list` with any new files.\n7. Run `vagrant-spk pack build/[VERSION].spk` (replacing `[VERSION]` with the version you chose in step 2)\n8. On a sandstorm instance, upload the packed app file and install it. Test it to ensure everything works properly and that all files were included.\n9. Commit any uncommitted changes and tag them `v[VERSION]`.\n10. Run `vagrant-spk publish build/[VERSION].spk`\n\n### Acknowledgements\n\n- Built on [Ember.js](https://emberjs.com).\n- WebDAV support built with [jsDAV](https://github.com/mikedeboer/jsDAV).\n\n### License\n\nSee LICENSE file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmnutt%2Fdavros","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmnutt%2Fdavros","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmnutt%2Fdavros/lists"}