Keep your email safe from hackers and trackers. Make an email alias with 1 click, and keep your address to yourself.
Перейти к файлу
Vincent 3128316310 Add missing events to metrics docs
We didn't have a new data review and only added new events that
fall into the same category of data as data we were already
collecting (Category 2, "interaction data"), but it's both good
hygiene to attempt to keep this up-to-date, as well as possibly
interesting to people; hence the update.
2022-03-24 17:26:35 +01:00
.circleci Align cache keys and CI job names 2022-03-17 09:16:59 -07:00
.github Bump actions/checkout from 2 to 3 2022-03-16 03:27:47 -07:00
api Restore premium_countries API 2022-03-16 03:02:49 -07:00
docs Add missing events to metrics docs 2022-03-24 17:26:35 +01:00
emails Change the error name for S3 client error 2022-03-10 15:53:38 -06:00
frontend Correctly communicate authn status to add-on 2022-03-23 00:20:30 -07:00
phones use same proxy number for 2nd participant 2019-12-30 11:41:53 -06:00
privaterelay Fix spacing, add code comment 2022-03-22 15:39:20 -05:00
static Add Mozilla VPN to the AppMenu 2022-03-16 03:02:49 -07:00
.buildpacks everything(?) heroku needs for django-gulp 2021-06-11 12:48:43 -05:00
.coveragerc Use relative folders for .coverage 2022-03-11 15:59:31 -06:00
.dockerignore Ignore more files and folders 2022-02-25 14:32:26 -06:00
.env-dist Add environment variable to enable the React app 2022-03-16 03:02:49 -07:00
.eslintignore Don't use old linter on new frontend 2022-03-16 03:02:49 -07:00
.eslintrc.js Update linter to ECMA 2020 to support optional chaining 2021-11-10 12:13:54 +01:00
.gitignore Report frontend test output to CircleCI 2022-03-16 03:02:49 -07:00
.gitmodules Mark `main` as the default branch of the submodule 2022-03-03 08:48:22 -08:00
.stylelintrc.json Stylelint updates (#1022) 2021-08-17 16:17:23 -05:00
Dockerfile Separate frontend tests and build 2022-03-16 03:02:49 -07:00
LICENSE add LICENSE file 2021-01-25 11:35:32 -06:00
METRICS.md Add missing events to metrics docs 2022-03-24 17:26:35 +01:00
Procfile initial commit 2019-06-05 04:40:03 -05:00
README.md Set up infrastructure to analyse bundle size 2022-03-16 03:02:49 -07:00
gulpfile.js Multi-part Premium Onboarding (#1318) 2021-11-05 17:40:46 -05:00
gunicorn.conf use PORT env var for gunicorn binding 2020-03-05 12:10:53 -06:00
manage.py initial commit 2019-06-05 04:40:03 -05:00
package-lock.json Multi-part Premium Onboarding (#1318) 2021-11-05 17:40:46 -05:00
package.json Multi-part Premium Onboarding (#1318) 2021-11-05 17:40:46 -05:00
pytest.ini for #79: pytest on circle 2020-04-07 10:47:26 -05:00
requirements.txt Bump django from 2.2.26 to 2.2.27 2022-02-10 19:07:36 +00:00
runtime.txt fix address header encoding for python 3.7.9 2021-01-27 17:25:21 -06:00

README.md

Private Relay

Private Relay provides generated email addresses to use in place of personal email addresses.

Recipients will still receive emails, but Private Relay keeps their personal email address from being harvested, and then bought, sold, traded, or combined with other data to personally identify, track, and/or target them.

Development

Please refer to our coding standards for code styles, naming conventions and other methodologies.

Requirements

  • python 3.7 (we recommend virtualenv)
  • PostgreSQL - even if you are using sqlite for development, requirements.txt installs psycopg2 which requires libpq and Python header files. The following should work:
    • On Windows
    • On Ubuntu: sudo apt install postgresql libpq-dev python3-dev
    • On OSX: brew install postgresql libpq
    • On Fedora: sudo dnf install libpq-devel python3-devel
  • SES if you want to send real emails
  • Node 14.X – Needed to compile the front-end

Install and Run the Site Locally

  1. Clone and change to the directory:

    git clone --recurse-submodules https://github.com/mozilla/fx-private-relay.git
    cd fx-private-relay
    
  2. Create and activate a virtual environment:

    virtualenv env
    source env/bin/activate
    
  3. Install Python and Node requirements:

    pip install -r requirements.txt
    
    cd frontend
    npm install
    
  4. Copy .env file for decouple config:

    cp .env-dist .env
    
  5. Add a SECRET_KEY value to .env:

    SECRET_KEY=secret-key-should-be-different-for-every-install
    
  6. Migrate DB:

    python manage.py migrate
    
  7. Create superuser:

    python manage.py createsuperuser
    
  8. Run the backend:

    python manage.py runserver
    

    and in a different terminal, build the frontend:

    cd frontend
    npm run watch
    

Working with translations

Getting the latest translations

We use a git submodule for translated message files. The --recurse-submodules step of installation should bring the message files into your working directory already, but you may want also want to udpate the translations after install. The easiest way to do that is:

  • git submodule update --remote

Add/update messages for translation

The privaterelay/locales directory is a git repository like any other, so to make changes to the messages:

  1. Make whatever changes you need in privaterelay/locales/en as you work.

  2. cd privaterelay/locales/en

  3. git branch message-updates-yyyymmdd

  4. git push -u origin message-updates-yyyymmdd

You can then open a pull request from the message-updates-yyyymmdd branch to the l10n repo main branch.

If you're not yet ready to submit some strings for translation, you can tentatively add them to frontend/pendingTranslations.ftl. Strings in that file will show up until strings with the same ID are added to the l10n repository.

Commit translations for release

To commit updates to the app's translations (e.g., before a release), we need to commit this submodule update. So, if the updated translations are ready to be committed into the app, you can git add the submodule just like any other file:

  • git add privaterelay/locales

You can then commit and push to set the app repository to the updated version of the translations submodule:

  • git push

To enable Firefox Accounts authentication on your local server, you can use the "Firefox Private Relay local dev" OAuth app on accounts.stage.mozaws.net.

To do so:

  1. Set ADMIN_ENABLED=True in your .env file

  2. Shutdown the server if running, and add the admin tables with:

    python manage.py migrate
    
  3. Run the server, now with /admin endpoints:

    python manage.py runserver
    
  4. Go to the django admin page to change the default site.

  5. Change example.com to 127.0.0.1:8000 and click Save.

  6. Go to the django-allauth social app admin page, sign in with the superuser account you created above, and add a social app for Firefox Accounts:

Field Value
Provider Firefox Accounts
Name accounts.stage.mozaws.net
Client id 9ebfe2c2f9ea3c58
Secret key Request this from #fx-private-relay-eng Slack channel
Sites 127.0.0.1:8000 -> Chosen sites

Now you can sign into http://127.0.0.1:8000/ with an FxA.

⚠️ Remember that you'll need to use an account on https://accounts.stage.mozaws.net/, not the production site, accounts.firefox.com.

Optional: Install and run the add-on locally

Note: The add-on is located in a separate repo. See it for additional information on getting started.

The add-on adds Firefox UI to generate and auto-fill email addresses across the web. Running the add-on locally allows it to communicate with your local server (127.0.0.1:8000) instead of the production server (relay.firefox.com).

Optional: Run a development server to compile the frontend

npm run watch watches the frontend/src directory and builds the frontend when it detects changes. However, creating a production build is just time-consuming enough to interrupt your development flow. It is therefore also possible to run the front-end on a separate server that only recompiles changed modules, and does not apply production optimizations. To do so, instead of npm run watch, run npm run dev.

The frontend is now available at http://localhost:3000. Keep in mind that this does make your local development environment less similar to production; in particular, authentication is normally bound to the backend server, and thus needs to be simulated when running the frontend on a separate server. If you make any changes related to authentication, make sure to test them using npm run watch as well.

Optional: Enable Premium Features

Note: Premium features are automatically enabled for any user with an email address ending in mozilla.com, getpocket.com, or mozillafoundation.org (see PREMIUM_DOMAINS in emails/models.py). To mimic the customer's experience, it is recommended to follow the below procedure.

To enable the premium Relay features, we integrate with the FXA Subscription Platform. At a high level, to set up Relay premium subscription, we:

  1. Enable Firefox Accounts Authentication as described above.

  2. Create a product & price in our Stripe dashboard. (Ask in #subscription-platform Slack channel to get access to our Stripe dashboard.)

  3. Link free users of Relay to the appropriate SubPlat purchase flow.

  4. Check users' FXA profile json for a subscriptions field to see if they can access a premium, subscription-only feature.

In detail:

  1. Enable Firefox Accounts Authentication as described above.

  2. Go to our Stripe dashboard. (Ask in #subscription-platform Slack channel to get access to our Stripe dashboard.)

  3. Create a new product in Stripe.

  4. Add all required product: metadata.

    • Note: each piece of this metadata must have a product: prefix. So, for example, webIconURL must be entered as product:webIconURL.
  5. Add capabilities: metadata.

    • Note: Each piece of this metadata must have a format like capabilities:<fxa oauth client ID>, and the value is a free-form string to describe the "capability" that purchasing the subscription gives to the user. E.g., capabilities:9ebfe2c2f9ea3c58 with value of premium-relay.
  6. Set some env vars with values from the above steps:

Var Value
FXA_SUBSCRIPTIONS_URL https://accounts.stage.mozaws.net/subscriptions
PREMIUM_PROD_ID prod_IyCWnXUbkYjDgL (from Stripe)
PREMIUM_PRICE_ID price_1IMG7KKb9q6OnNsL15Hsn1HE (from Stripe)
SUBSCRIPTIONS_WITH_UNLIMITED "premium-relay" (match the capabilities value you used in Stripe)

Optional: Debugging JavaScript bundle sizes

In frontend/, set ANALYZE=true when running npm run build to generate a report detailing which modules are taking up most of the bundle size. A report will be generated for both the client and server part of the frontend, but since we only use the client, we're really only interested in that. The reports will automatically open in your browser, and can also be found in /frontend/.next/analyze/.

ANALYZE=true npm run build

Test Premium

There is a comprehensive doc of test cases for purchasing premium Relay.

You can use Stripe's test credit card details for payment.

Production Environments

Requirements

In addition to the requirements for dev, production environments should use:

Environment Variables

Production environments should also set some additional environment variables:

DATABASE_URL=postgresql://<username>:<password>@<host>:<port>/<database>
DJANGO_SECURE_HSTS_SECONDS=15768000
DJANGO_SECURE_SSL_REDIRECT=True