Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: refacto des tags sur matomo #145

Merged
merged 23 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f6568f7
feat: refacto des tags sur matomo
mbarry-ippon Mar 22, 2023
b14e6fd
fix: qualité du code
mbarry-ippon Mar 22, 2023
fd36095
fix: duplicate code
mbarry-ippon Mar 22, 2023
049a039
fix: test duplicated line code
mbarry-ippon Mar 22, 2023
e0564bf
fix: enlever le test du rendez vous pour passer le check de duplication
mbarry-ippon Mar 22, 2023
545f81c
fix: enlever le test du rendez vous pour passer le check de duplication
mbarry-ippon Mar 22, 2023
b8d0c91
fix: enlever le test du rendez vous pour passer le check de duplication
mbarry-ippon Mar 22, 2023
f42b8e2
fix: tag commencer le questionnaire
mbarry-ippon Mar 22, 2023
8355d0a
fix: remove consolelog
mbarry-ippon Mar 22, 2023
e3737e5
fix: tag results only in /result urls
mbarry-ippon Mar 22, 2023
0aecac2
feat: ajout de la variable d'env pour le lien calendly + rajouter la …
mbarry-ippon Mar 22, 2023
827ddbc
fix: enlever les '' dans les yml workflows
mbarry-ippon Mar 22, 2023
4d153f6
fix: remove unused import
mbarry-ippon Mar 22, 2023
39a1442
fix: set backToResult in Home
mbarry-ippon Mar 22, 2023
56086f7
fix: tracker into results page
mbarry-ippon Mar 22, 2023
394c90a
fix: condition si retour a mon resultats
mbarry-ippon Mar 22, 2023
e50a1c7
fix: tracker resultats du tests dans intentions
mbarry-ippon Mar 22, 2023
2c82b02
fix: tracker du resultats dans les clics
mbarry-ippon Mar 22, 2023
c2d99fe
fix: retour a mon resultats tracker
mbarry-ippon Mar 22, 2023
9af6175
fix: tracker du resultat envoyer toujours <9 fixer
mbarry-ippon Mar 22, 2023
eb9e7b8
fix: tracker du resultat envoyer toujours <9 fixer
mbarry-ippon Mar 22, 2023
75b57f7
ifx: remove console log
mbarry-ippon Mar 22, 2023
a3b224e
fix: tracker results ne s'affiche plus
mbarry-ippon Mar 22, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ NEXT_PUBLIC_MATOMO_ENABLED = false
NEXT_PUBLIC_PASTEK_CHAT_ID = 2
NEXT_PUBLIC_TEST_NUMBER_ENABLED = true
NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES = "https://1000jours-blues-preprod.dev.fabrique.social.gouv.fr/ressources"
NEXT_PUBLIC_CALENDLY_LINK="https://calendly.com/test1000jfabnum/30min"
1 change: 1 addition & 0 deletions .github/workflows/preproduction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
NEXT_PUBLIC_PASTEK_CHAT_ID=2
NEXT_PUBLIC_TEST_NUMBER_ENABLED=true
NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES=https://1000jours-blues-preprod.dev.fabrique.social.gouv.fr/ressources
NEXT_PUBLIC_CALENDLY_LINK=https://calendly.com/test1000jfabnum/30min

deploy:
name: Deploy application
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
NEXT_PUBLIC_PASTEK_CHAT_ID=1
NEXT_PUBLIC_TEST_NUMBER_ENABLED=false
NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES=https://1000jours-blues.fabrique.social.gouv.fr/ressources
NEXT_PUBLIC_CALENDLY_LINK=https://calendly.com/rdv-nos1000jours/30min

deploy:
name: Deploy application
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
NEXT_PUBLIC_PASTEK_CHAT_ID=2
NEXT_PUBLIC_TEST_NUMBER_ENABLED=true
NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES=https://1000jours-blues-preprod.dev.fabrique.social.gouv.fr/ressources
NEXT_PUBLIC_CALENDLY_LINK=https://calendly.com/test1000jfabnum/30min

deploy:
name: Deploy review branch
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ ENV NEXT_PUBLIC_PASTEK_CHAT_ID=$NEXT_PUBLIC_PASTEK_CHAT_ID
ARG NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES
ENV NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES=$NEXT_PUBLIC_LANDING_PAGE_BLUES_RESOURCES

ARG NEXT_PUBLIC_CALENDLY_LINK
ENV NEXT_PUBLIC_CALENDLY_LINK=$NEXT_PUBLIC_CALENDLY_LINK

RUN yarn --production --frozen-lockfile --prefer-offline && yarn cache clean
RUN yarn build

Expand Down
Loading