24
1
Fork 0
drop.chapril.org-firefoxsend/README.md

173 lines
5.8 KiB
Markdown
Raw Permalink Normal View History

2021-11-24 14:42:29 +01:00
# [![Send](./assets/icon-64x64.png)](https://gitlab.com/timvisee/send/) Send
2020-10-16 16:42:40 +02:00
[![Build status on GitLab CI][gitlab-ci-master-badge]][gitlab-ci-link]
[![Latest release][release-badge]][release-link]
2020-10-16 16:42:40 +02:00
[![Docker image][docker-image-badge]][docker-image-link]
[![Project license][repo-license-badge]](LICENSE)
[docker-image-badge]: https://img.shields.io/badge/docker-latest-blue.svg
[docker-image-link]: https://gitlab.com/timvisee/send/container_registry/eyJuYW1lIjoidGltdmlzZWUvc2VuZCIsInRhZ3NfcGF0aCI6Ii90aW12aXNlZS9zZW5kL3JlZ2lzdHJ5L3JlcG9zaXRvcnkvMTQxODUwNC90YWdzP2Zvcm1hdD1qc29uIiwiaWQiOjE0MTg1MDQsImNsZWFudXBfcG9saWN5X3N0YXJ0ZWRfYXQiOm51bGx9
[gitlab-ci-link]: https://gitlab.com/timvisee/send/pipelines
[gitlab-ci-master-badge]: https://gitlab.com/timvisee/send/badges/master/pipeline.svg
[release-badge]: https://img.shields.io/github/v/tag/timvisee/send
2020-10-20 20:56:23 +02:00
[release-link]: https://gitlab.com/timvisee/send/-/tags
2020-10-16 16:42:40 +02:00
[repo-license-badge]: https://img.shields.io/github/license/timvisee/send.svg
2017-06-26 21:34:31 +02:00
A fork of Mozilla's [Firefox Send][mozilla-send].
Mozilla discontinued Send, this fork is a community effort to keep the project
up-to-date and alive.
2020-10-16 18:54:19 +02:00
- Forked [at][fork-commit] Mozilla's last publicly hosted version
- _Mozilla_ & _Firefox_ branding [is][remove-branding-pr] removed so you can legally self-host
- Kept compatible with [`ffsend`][ffsend] (CLI for Send)
- Dependencies have been updated
2020-10-16 18:54:19 +02:00
- Mozilla's [changes][mozilla-patches] since the fork have been selectively [merged][mozilla-patches-pr]
- Mozilla's experimental report feature, download tokens, trust warnings and FxA changes are not included
Find an up-to-date Docker image here: [docs/docker.md](docs/docker.md)
2020-10-16 18:54:19 +02:00
The original project by Mozilla can be found [here][mozilla-send].
The [`mozilla-master`][branch-mozilla-master] branch holds the `master` branch
as left by Mozilla.
The [`send-v3`][branch-send-v3] branch holds the commit tree of Mozilla's last
2020-10-16 18:54:19 +02:00
publicly hosted version, which this fork is based on.
The [`send-v4`][branch-send-v4] branch holds the commit tree of Mozilla's last
experimental version which was still a work in progress (featuring file
reporting, download tokens, trust warnings and FxA changes), this has
selectively been merged into this fork.
2020-10-16 18:54:19 +02:00
Please consider to [donate][donate] to allow me to keep working on this.
Thanks [Mozilla][mozilla] for building this amazing tool!
[branch-mozilla-master]: https://gitlab.com/timvisee/send/-/tree/mozilla-master
[branch-send-v3]: https://gitlab.com/timvisee/send/-/tree/send-v3
[branch-send-v4]: https://gitlab.com/timvisee/send/-/tree/send-v4
2020-10-16 18:54:19 +02:00
[donate]: https://timvisee.com/donate
[ffsend]: https://github.com/timvisee/ffsend
[fork-commit]: https://gitlab.com/timvisee/send/-/commit/3e9be676413a6e1baaf6a354c180e91899d10bec
[mozilla-patches-pr]: https://gitlab.com/timvisee/send/-/merge_requests/3
[mozilla-patches]: https://gitlab.com/timvisee/send/-/compare/3e9be676413a6e1baaf6a354c180e91899d10bec...mozilla-master
[mozilla-send]: https://github.com/mozilla/send
[mozilla]: https://mozilla.org/
[remove-branding-pr]: https://gitlab.com/timvisee/send/-/merge_requests/2
---
2017-06-26 21:34:31 +02:00
2021-03-15 19:56:51 +01:00
**Docs:** [FAQ](docs/faq.md), [Encryption](docs/encryption.md), [Build](docs/build.md), [Docker](docs/docker.md), [More](docs/)
---
## Table of Contents
* [What it does](#what-it-does)
* [Requirements](#requirements)
* [Development](#development)
* [Commands](#commands)
* [Configuration](#configuration)
* [Localization](#localization)
* [Contributing](#contributing)
2021-03-26 12:23:20 +01:00
* [Instances](#instances)
2019-07-12 16:07:24 +02:00
* [Deployment](#deployment)
2021-01-24 21:38:05 +01:00
* [Clients](#clients)
* [License](#license)
---
2017-06-26 21:34:31 +02:00
## What it does
2017-07-19 18:23:42 +02:00
A file sharing experiment which allows you to send encrypted files to other users.
2017-06-26 21:34:31 +02:00
---
2017-06-26 21:34:31 +02:00
## Requirements
2021-12-01 18:20:43 +01:00
- [Node.js 16.x](https://nodejs.org/)
- [Redis server](https://redis.io/) (optional for development)
- [AWS S3](https://aws.amazon.com/s3/) or compatible service (optional)
2017-06-26 21:34:31 +02:00
---
## Development
To start an ephemeral development server, run:
2017-06-26 21:34:31 +02:00
```sh
npm install
npm start
2017-06-26 21:34:31 +02:00
```
Then, browse to http://localhost:8080
2017-08-26 00:41:53 +02:00
---
## Commands
2017-06-26 21:34:31 +02:00
| Command | Description |
|------------------|-------------|
| `npm run format` | Formats the frontend and server code using **prettier**.
| `npm run lint` | Lints the CSS and JavaScript code.
| `npm test` | Runs the suite of mocha tests.
| `npm start` | Runs the server in development configuration.
| `npm run build` | Builds the production assets.
| `npm run prod` | Runs the server in production configuration.
2017-06-26 21:34:31 +02:00
---
## Configuration
2017-08-27 22:45:38 +02:00
The server is configured with environment variables. See [server/config.js](server/config.js) for all options and [docs/docker.md](docs/docker.md) for examples.
---
2017-06-26 21:34:31 +02:00
## Localization
See: [docs/localization.md](docs/localization.md)
2018-03-06 01:29:09 +01:00
---
2017-06-26 21:34:31 +02:00
## Contributing
2021-04-02 08:55:18 +02:00
Pull requests are always welcome! Feel free to check out the list of "good first issues" (to be implemented).
2017-06-26 21:34:31 +02:00
---
2021-03-26 12:23:20 +01:00
## Instances
Find a list of public instances here: https://github.com/timvisee/send-instances/
---
2019-07-12 16:07:24 +02:00
## Deployment
See: [docs/deployment.md](docs/deployment.md)
2019-07-12 16:07:24 +02:00
Docker quickstart: [docs/docker.md](docs/docker.md)
AWS example using Ubuntu Server `20.04`: [docs/AWS.md](docs/AWS.md)
2019-07-12 16:07:24 +02:00
---
2021-01-24 21:38:05 +01:00
## Clients
2021-01-24 21:38:05 +01:00
- Web: _this repository_
- Command-line: [`ffsend`](https://github.com/timvisee/ffsend)
- Android: _see [Android](#android) section_
- Thunderbird: [FileLink provider for Send](https://addons.thunderbird.net/en-US/thunderbird/addon/filelink-provider-for-send/)
2021-01-24 21:38:05 +01:00
#### Android
The android implementation is contained in the `android` directory,
and can be viewed locally for easy testing and editing by running `ANDROID=1 npm
start` and then visiting <http://localhost:8080>. CSS and image files are
located in the `android/app/src/main/assets` directory.
---
2017-06-26 21:34:31 +02:00
## License
[Mozilla Public License Version 2.0](LICENSE)
[qrcode.js](https://github.com/kazuhikoarase/qrcode-generator) licensed under MIT
---