{"id":13693683,"url":"https://github.com/cozy/cozy-drive","last_synced_at":"2025-10-06T23:44:42.647Z","repository":{"id":37493328,"uuid":"76205055","full_name":"cozy/cozy-drive","owner":"cozy","description":"Cozy Drive Web App for Cozy Cloud","archived":false,"fork":false,"pushed_at":"2025-04-22T10:03:44.000Z","size":569687,"stargazers_count":175,"open_issues_count":44,"forks_count":65,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-04-22T11:23:01.663Z","etag":null,"topics":["cozy","drive","file-manager"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cozy.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2016-12-11T22:51:29.000Z","updated_at":"2025-04-22T10:03:46.000Z","dependencies_parsed_at":"2023-10-20T19:02:41.569Z","dependency_job_id":"b8082979-fd6f-4aca-b3e5-ab09c4d48f00","html_url":"https://github.com/cozy/cozy-drive","commit_stats":null,"previous_names":[],"tags_count":416,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cozy%2Fcozy-drive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cozy%2Fcozy-drive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cozy%2Fcozy-drive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cozy%2Fcozy-drive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cozy","download_url":"https://codeload.github.com/cozy/cozy-drive/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252109157,"owners_count":21696211,"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":["cozy","drive","file-manager"],"created_at":"2024-08-02T17:01:15.416Z","updated_at":"2025-10-06T23:44:37.599Z","avatar_url":"https://github.com/cozy.png","language":"JavaScript","funding_links":[],"categories":["File"],"sub_categories":["Widget"],"readme":"[![Travis build status shield](https://img.shields.io/travis/cozy/cozy-drive.svg?branch=master)](https://travis-ci.org/cozy/cozy-drive)\n[![Github Release version shield](https://img.shields.io/github/tag/cozy/cozy-drive.svg)](https://github.com/cozy/cozy-drive/releases)\n[![NPM Licence shield](https://img.shields.io/github/license/cozy/cozy-drive.svg)](https://github.com/cozy/cozy-drive/blob/master/LICENSE)\n\n\n[Cozy] Drive\n=====\n\n\nWhat's Cozy?\n----\n\n![Cozy Logo](https://cdn.rawgit.com/cozy/cozy-guidelines/master/templates/cozy_logo_small.svg)\n\n[Cozy] is a platform that brings all your web services in the same private space.  With it, your webapps and your devices can share data easily, providing you with a new experience. You can install Cozy on your own hardware where no one's tracking you.\n\n\nWhat's Drive?\n----\n\nCozy Drive makes your file management easy. Main features are:\n\n- File tree\n- Files and folders upload.\n- Files and folders sharing (via URLs)\n- Files and folders search\n\n\nGetting Started\n----\n\n_:pushpin: Note:_ [Yarn] is the official Node package manager of Cozy. Don't hesitate to [install Yarn][yarn-install] and use it in any Cozy projects.\n\n### Install\n\nStarting the Drive app requires you to [setup a dev environment][setup].\n\nYou can then clone the app repository and install dependencies:\n\n```sh\n$ git clone https://github.com/cozy/cozy-drive.git\n$ cd cozy-drive\n$ yarn install\n```\n\n:pushpin: Don't forget to set the local node version indicated in the `.nvmrc` before doing a `yarn install`.\n\n:warning: During its early ages, _cozy-drive_ uses beta versions of [cozy-ui] and [cozy-client-js], take a look at the [\"living on the edge\" note](#living-on-the-edge) below to know how to install and configure the latest available versions.\n\nCozy's apps use a standard set of _npm scripts_ to run common tasks, like watch, lint, test, build…\n\n### Run in dev mode\n\nUsing a watcher - with Hot Module Replacement:\n```sh\n$ cd cozy-drive\n$ yarn watch\n$ cozy-stack serve --appdir drive:/\u003cproject_absolute_path\u003e/cozy-drive/build/drive --disable-csp\n```\n\nOr directly build the app (static file generated):\n```sh\n$ cd cozy-drive\n$ yarn build\n$ cozy-stack serve --appdir drive:/\u003cproject_absolute_path\u003e/cozy-drive/build/drive\n```\n\nYour app is available at http://drive.cozy.localhost:8080/#/folder\n\nNote: it's mandatory to explicit to cozy-stack the folder of the build that should be served, to be able to run the app.\n\n### Run it inside the VM\n\nYou can easily view your current running app, you can use the [cozy-stack docker image][cozy-stack-docker]:\n\n```sh\n# in a terminal, run your app in watch mode\n$ cd cozy-drive\n$ yarn watch\n```\n\n```sh\n# in another terminal, run the docker container\n$ docker run --rm -it -p 8080:8080 -v \"$(pwd)/build/drive\":/data/cozy-app/drive cozy/cozy-app-dev\n```\n\nYour app is available at http://drive.cozy.tools:8080.\n\nAdvanced case\n----\n\n### Share and send mails in development\n\nCozy apps let users [share documents from cozy to cozy](https://github.com/cozy/cozy-stack/blob/master/docs/sharing.md#cozy-to-cozy-sharing).\n\nMeet Alice and Bob.\nAlice wants to share a folder with Bob.\nAlice clicks on the share button and fills in the email input with Bob's email address.\nBob receives an email with a _« Accept the sharing »_ button.\nBob clicks on that button and is redirected to Alice's cozy to enter his own cozy url to link both cozys.\nBob sees Alice's shared folder in his own cozy.\n\n🤔 But how could we do this scenario on binary cozy-stack development environment?\n\nIf you develop with the [cozy-stack CLI](https://github.com/cozy/cozy-stack/blob/master/docs/cli/cozy-stack.md), you have to run [MailHog](https://github.com/mailhog/MailHog) on your computer and tell `cozy-stack serve` where to find the mail server with some [options](https://github.com/cozy/cozy-stack/blob/master/docs/cli/cozy-stack_serve.md#options):\n\n```\n./cozy-stack serve --appdir drive:../cozy-drive/build,settings:../cozy-settings/build --mail-disable-tls --mail-port 1025\n```\n\n_This commands assumes you `git clone` [cozy-drive](https://github.com/cozy/cozy-drive) and [cozy-settings](https://github.com/cozy/cozy-settings) in the same folder than you `git clone` [cozy-stack](https://github.com/cozy/cozy-stack)._\n\nThen simply run `mailhog` and open http://cozy.tools:8025/.\n\n#### Retrieve sent emails\n\nWith MailHog, **every email** sent by cozy-stack is caught. That means the email address *does not have to be a real one*, ie. `bob@cozy`, `bob@cozy.tools` are perfectly fine. It *could be a real one*, but the email will not reach the real recipient's inbox, say `contact@cozycloud.cc`.\n\n### Living on the edge\n\n[Cozy-ui] is our frontend stack library that provides common styles and components accross the whole Cozy's apps. You can use it for you own application to follow the official Cozy's guidelines and styles. If you need to develop / hack cozy-ui, it's sometimes more useful to develop on it through another app. You can do it by cloning cozy-ui locally and link it to yarn local index:\n\n```sh\ngit clone https://github.com/cozy/cozy-ui.git\ncd cozy-ui\nyarn install\nyarn link\n```\n\nthen go back to your app project and replace the distributed cozy-ui module with the linked one:\n\n```sh\ncd cozy-drive\nyarn link cozy-ui\n```\n\nYou can now run the watch task and your project will hot-reload each times a cozy-ui source file is touched.\n\n###### Troubleshooting\nConsider using [rlink] instead of `yarn link`\n\n\n[Cozy-client] is our API library that provides an unified API on top of the cozy-stack. If you need to develop / hack cozy-client in parallel of your application, you can use the same trick that we used with [cozy-ui]: yarn linking.\n\n\n### Tests\n\nTests are run by [jest] under the hood, and written using [chai] and [sinon]. You can easily run the tests suite with:\n\n```sh\n$ cd cozy-drive\n$ yarn test\n```\n\n:pushpin: Don't forget to update / create new tests when you contribute to code to keep the app the consistent.\n\n\n### Open a Pull-Request\n\nIf you want to work on Drive and submit code modifications, feel free to open pull-requests! See the [contributing guide][contribute] for more information about how to properly open pull-requests.\n\n\nCommunity\n---------\n\n### Localization\n\nLocalization and translations are handled by [Transifex][tx].\n\nAs a _translator_, you can login to [Transifex][tx-signin] (using your Github account) and claim access to the [app repository][tx-app]. Locales are pulled [by the pipeline][yarn tx in travis.yml] when app is build before publishing.\n\nAs a _developer_, you must configure the [Transifex CLI][tx-cli], and claim access as _maintainer_ to the [app repository][tx-app]. Then please **only update** the source locale file (usually `en.json` in client and/or server parts), and push it to Transifex repository using the `tx push -s` command.\n\nIf you were using a [transifex-client](tx-client), you must move to [Transifex CLI](tx-cli) to be compatible with the v3 API.\n\nThe transifex configuration file is still in an old version. Please use the previous client for the moment [https://github.com/transifex/transifex-client/](https://github.com/transifex/transifex-client/).\n\n###### Drive specificity\n\nCozyDrive and CozyPhotos share this mono-repository but the translations are split into two projects Transifex.\nThat is why the translation files are not present in this repository.\n\nTo update the translation in other language, make the changes directly on [tx-translate]. Select one language and click on **global**\n\n### Maintainer\n\nThe lead maintainer for Cozy Drive is @Crash--, send him/her a :beers: to say hello!\n\n### Get in touch\n\nYou can reach the Cozy Community by:\n\n- Chatting with us on IRC [#cozycloud on Libera.Chat][libera]\n- Posting on our [Forum][forum]\n- Posting issues on the [Github repos][github]\n- Say Hi! on [Twitter][twitter]\n\n\nLicense\n-------\n\nCozy Drive is developed by Cozy Cloud and distributed under the [AGPL v3 license][agpl-3.0].\n\n\n\n[cozy]: https://cozy.io \"Cozy Cloud\"\n[setup]: https://docs.cozy.io/en/tutorials/app/#install-the-development-environment \"Cozy dev docs: Set up the Development Environment\"\n[yarn]: https://yarnpkg.com/\n[yarn-install]: https://yarnpkg.com/en/docs/install\n[cozy-ui]: https://github.com/cozy/cozy-ui\n[rlink]: https://gist.github.com/ptbrowne/add609bdcf4396d32072acc4674fff23\n[cozy-client]: https://github.com/cozy/cozy-client/\n[cozy-stack-docker]: https://github.com/cozy/cozy-stack/blob/master/docs/client-app-dev.md#with-docker\n[doctypes]: https://cozy.github.io/cozy-doctypes/\n[bill-doctype]: https://github.com/cozy/cozy-konnector-libs/blob/master/models/bill.js\n[konnector-doctype]: https://github.com/cozy/cozy-konnector-libs/blob/master/models/base_model.js\n[konnectors]: https://github.com/cozy/cozy-konnector-libs\n[agpl-3.0]: https://www.gnu.org/licenses/agpl-3.0.html\n[contribute]: CONTRIBUTING.md\n[tx]: https://www.transifex.com/cozy/\n[tx-signin]: https://www.transifex.com/signin/\n[tx-app]: https://www.transifex.com/cozy/cozy-drive/dashboard/\n[tx-translate]: https://www.transifex.com/cozy/cozy-drive/translate/\n[tx-cli]: https://developers.transifex.com/docs/cli\n[tx-client]: https://github.com/transifex/transifex-client\n[libera]: https://web.libera.chat/#cozycloud\n[forum]: https://forum.cozy.io/\n[github]: https://github.com/cozy/\n[twitter]: https://twitter.com/cozycloud\n[nvm]: https://github.com/creationix/nvm\n[cozy-dev]: https://github.com/cozy/cozy-dev/\n[jest]: https://jestjs.io/fr/\n[chai]: http://chaijs.com/\n[sinon]: http://sinonjs.org/\n[checkbox]: https://help.github.com/articles/basic-writing-and-formatting-syntax/#task-lists\n[yarn tx in travis.yml]: .travis.yml#L41\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcozy%2Fcozy-drive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcozy%2Fcozy-drive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcozy%2Fcozy-drive/lists"}