-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into mntor-3358-layout
- Loading branch information
Showing
131 changed files
with
5,663 additions
and
2,186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ DATABASE_URL="postgres://blurts:blurts@localhost:5432/blurts" | |
# Set these to be able to run end-to-end tests locally | ||
E2E_TEST_ACCOUNT_EMAIL= | ||
E2E_TEST_ACCOUNT_PASSWORD= | ||
E2E_TEST_ACCOUNT_EMAIL_ZERO_BREACHES= | ||
E2E_TEST_ACCOUNT_EMAIL_ZERO_BROKERS= | ||
E2E_TEST_ACCOUNT_EMAIL_ZERO_BREACHES_ZERO_BROKERS= | ||
E2E_TEST_ACCOUNT_EMAIL_EXPOSURES_STARTED= | ||
E2E_TEST_PAYPAL_LOGIN = | ||
E2E_TEST_PAYPAL_PASSWORD = | ||
|
@@ -58,18 +59,17 @@ NEXT_PUBLIC_SENTRY_DSN=https://[email protected]. | |
# SubPlat product and plan IDs, used for Plus subscriptions: | ||
PREMIUM_PRODUCT_ID=prod_NErZh679W62lai | ||
PREMIUM_PLAN_ID_MONTHLY_US=price_1MUNq0Kb9q6OnNsL4BoJgepf | ||
PREMIUM_PLAN_ID_YEARLY_US=price_1MUNq0Kb9q6OnNsL4BoJgepf | ||
PREMIUM_PLAN_ID_YEARLY_US=price_1NvqawKb9q6OnNsLRTnYrtrV | ||
|
||
# Mozilla Accounts URLs | ||
FXA_SUBSCRIPTIONS_URL=https://accounts.stage.mozaws.net/subscriptions | ||
FXA_SETTINGS_URL=https://accounts.stage.mozaws.net/settings | ||
OAUTH_CLIENT_ID=edd29a80019d61a1 | ||
OAUTH_API_URI="https://api-accounts.stage.mozaws.net/v1" | ||
# Set based on https://accounts.stage.mozaws.net/.well-known/openid-configuration | ||
OAUTH_AUTHORIZATION_URI=https://accounts.stage.mozaws.net/authorization | ||
OAUTH_PROFILE_URI=https://profile.stage.mozaws.net/v1/profile | ||
OAUTH_TOKEN_URI=https://oauth.stage.mozaws.net/v1/token | ||
OAUTH_ACCOUNT_URI = "https://oauth.accounts.firefox.com/v1" | ||
OAUTH_ACCOUNT_URI=https://oauth.stage.mozaws.net/v1 | ||
|
||
# Which environment to run end-to-end tests against: | ||
E2E_TEST_ENV=local | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Monitor 1-click Deployment | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: 'Environment to deploy to' | ||
required: true | ||
default: 'prod' | ||
type: choice | ||
options: | ||
- stage | ||
- prod | ||
originalImageTag: | ||
description: 'The original image tag that has been deployed to dockerhub' | ||
required: true | ||
type: string | ||
env: | ||
DOCKER_IMAGE_NAME: mozilla/blurts-server | ||
jobs: | ||
pull_retag_push: | ||
name: Push Docker image to Docker Hub | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Pull Docker image | ||
run: docker pull ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.originalImageTag }} | ||
|
||
- name: Retag image | ||
run: docker tag ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.originalImageTag }} ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.environment }}-${{ inputs.originalImageTag }} | ||
|
||
- name: Redeploy image | ||
run: docker push ${{ env.DOCKER_IMAGE_NAME }}:${{ inputs.environment }}-${{ inputs.originalImageTag }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
public-nav-name = { -brand-mozilla-monitor } | ||
landing-all-hero-title = Zjistěte, kde jsou vaše soukromé informace odhalené — a vezměte si je zpět | ||
landing-all-hero-lead = Prověřujeme úniky údajů a zjišťujeme, zda nedošlo k úniku vašich údajů. Následně vám nabízíme kroky k nápravě. | ||
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Zadejte svou e-mailovou adresu a zkontrolujte, zda nedošlo k úniku údajů. | ||
landing-all-hero-emailform-submit-label = Zkontrolovat | ||
landing-all-hero-emailform-submit-sign-in-label = Pro skenování zdarma se přihlaste | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = odhalení | ||
|
@@ -66,7 +64,5 @@ landing-all-help-protect-you-feature-one = Vyhledáme vás ve všech známých p | |
landing-all-help-protect-you-feature-two = Provedeme vás kroky k vyřešení každého úniku. | ||
landing-all-help-protect-you-feature-three = Průběžně budeme monitorovat a zasílat vám upozornění na nové úniky. | ||
landing-all-help-protect-you-cta = Přihlásit se k odběru upozornění na úniky | ||
landing-all-get-started = Zadejte svou e-mailovou adresu a začněte | ||
landing-all-take-back-data = Získejte opět kontrolu nad svými údaji | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
public-nav-name = { -brand-mozilla-monitor } | ||
landing-all-hero-title = Canfod lle mae'ch manylion preifat yn cael eu rhyddhau — a'u cipio nôl | ||
landing-all-hero-lead = Rydym yn sganio tor-data i weld a yw'ch data wedi'u datgelu ac yn cynnig camau i chi i'w drwsio. | ||
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Rhowch eich cyfeiriad e-bost i wirio am ddatguddiadau tor-data. | ||
landing-all-hero-emailform-submit-label = Cael sgan am ddim | ||
landing-all-hero-emailform-submit-sign-in-label = Mewngofnodwch i gael sgan am ddim | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = datgeliadau | ||
|
@@ -72,7 +70,5 @@ landing-all-help-protect-you-feature-one = Byddwn yn chwilio amdanoch ym mhob ac | |
landing-all-help-protect-you-feature-two = Byddwn yn eich arwain trwy'r camau i ddatrys pob tor-data | ||
landing-all-help-protect-you-feature-three = Byddwn yn monitro ac yn anfon rhybuddion atoch yn barhaus am unrhyw dor-data newydd | ||
landing-all-help-protect-you-cta = Cofrestrwch am rybuddion tor-data | ||
landing-all-get-started = Sganiwch eich e-bost i ddechrau | ||
landing-all-take-back-data = Ail feddiannwch eich rheolaeth o'ch data | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
public-nav-name = { -brand-mozilla-monitor } | ||
landing-all-hero-title = Finden Sie heraus, wo Ihre persönlichen Daten offengelegt wurden – und holen Sie sie zurück | ||
landing-all-hero-lead = Wir untersuchen Datenlecks, um zu sehen, ob Ihre Daten offengelegt wurden, und zeigen Ihnen die Schritte, um das Problem zu beheben. | ||
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Geben Sie Ihre E-Mail-Adresse ein, um sie auf Datenlecks zu überprüfen. | ||
landing-all-hero-emailform-submit-label = Kostenloser Scan | ||
landing-all-hero-emailform-submit-sign-in-label = Melden Sie sich an, um einen kostenlosen Scan zu erhalten | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = Offenlegungen | ||
|
@@ -64,7 +62,5 @@ landing-all-help-protect-you-feature-one = Wir suchen in allen bekannten Datenle | |
landing-all-help-protect-you-feature-two = Wir führen Sie durch die Schritte zur Behebung jedes einzelnen Datenlecks | ||
landing-all-help-protect-you-feature-three = Wir führen unser Monitoring kontinuierlich durch und warnen Sie bei allen neuen Datenlecks | ||
landing-all-help-protect-you-cta = Melden Sie sich an, um Warnungen bei Datenlecks zu erhalten | ||
landing-all-get-started = Scannen Sie Ihre E-Mail-Adresse, um loszulegen | ||
landing-all-take-back-data = Holen Sie sich die Kontrolle über Ihre Daten zurück | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
public-nav-name = { -brand-mozilla-monitor } | ||
landing-all-hero-title = Μάθετε πού εκτίθενται οι προσωπικές σας πληροφορίες και ανακτήστε τις | ||
landing-all-hero-lead = Σαρώνουμε τις παραβιάσεις δεδομένων για να δούμε εάν έχουν διαρρεύσει τα δεδομένα σας και σας παρέχουμε μέτρα για τη διόρθωσή τους. | ||
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Εισαγάγετε τη διεύθυνση email σας για να ελέγξετε εάν έχει εκτεθεί σε παραβιάσεις δεδομένων. | ||
landing-all-hero-emailform-submit-label = Δωρεάν σάρωση | ||
landing-all-hero-emailform-submit-sign-in-label = Συνδεθείτε για να λάβετε τη δωρεάν σάρωση | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = εκθέσεις | ||
|
@@ -62,7 +60,5 @@ landing-all-help-protect-you-feature-one = Θα κάνουμε αναζήτησ | |
landing-all-help-protect-you-feature-two = Θα σας καθοδηγήσουμε στα βήματα για την επίλυση κάθε παραβίασης | ||
landing-all-help-protect-you-feature-three = Θα παρακολουθούμε συνεχώς και θα σας ειδοποιούμε για τυχόν νέες παραβιάσεις | ||
landing-all-help-protect-you-cta = Εγγραφή για ειδοποιήσεις παραβιάσεων | ||
landing-all-get-started = Σαρώστε το email σας για να ξεκινήσετε | ||
landing-all-take-back-data = Ανακτήστε τον έλεγχο των δεδομένων σας | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,12 @@ | |
# file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
public-nav-name = { -brand-mozilla-monitor } | ||
landing-all-hero-title = Find where your private info is exposed — and take it back | ||
landing-all-hero-lead = We scan data breaches to see if your data has been leaked and give you steps to fix it. | ||
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Enter your email address to check for data breach exposures. | ||
landing-all-hero-emailform-submit-label = Get free scan | ||
landing-all-hero-emailform-submit-sign-in-label = Sign in to get free scan | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = exposures | ||
|
@@ -62,7 +60,5 @@ landing-all-help-protect-you-feature-one = We’ll search for you in all known d | |
landing-all-help-protect-you-feature-two = We’ll guide you through the steps to resolve each breach | ||
landing-all-help-protect-you-feature-three = We’ll continuously monitor and send you alerts for any new breaches | ||
landing-all-help-protect-you-cta = Sign up for breach alerts | ||
landing-all-get-started = Scan your email to get started | ||
landing-all-take-back-data = Take back control of your data | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ landing-all-hero-lead = We scan data breaches to see if your data has been leake | |
landing-all-hero-emailform-input-placeholder = [email protected] | ||
landing-all-hero-emailform-input-label = Enter your email address to check for data breach exposures. | ||
landing-all-hero-emailform-submit-label = Get free scan | ||
landing-all-hero-emailform-submit-sign-in-label = Sign in to get free scan | ||
# This is a label underneath a big number "14" - it's an image that demos Monitor. | ||
landing-all-hero-image-chart-label = exposures | ||
|
Oops, something went wrong.