Cette documentation est technique. Pour plus d'informations sur le simulateur d'aides pour les jeunes, regardez notre wiki.
L'interface utilisateur (et le serveur principal) du simulateur d'aides et de prestations sociales pour les jeunes. Il est basé sur simulateur socio-fiscal libre Openfisca.
- Github Actions (config)
- Continuous integration and deployment
- Netlify
- Deloy previews
- SendInBlue
- Matomo (stats.data.gouv.fr)
- [Dedicated site for usage data and impac][https://betagouv.github.io/mes-aides-analytics/] source
- Sentry
If you want to play with the UI, you can be set up very quickly:
npm ci
npm run frontCf. package.json for more on the underlying commands.
The application should be accessible at localhost:8080.
Make sure build-essential, mongodb and node 16.x are installed on your machine:
sudo apt-get install build-essential
sudo apt-get install mongodbThe runtime is Node 16.x for the web application, and Python 3.7 for Openfisca.
You can for example use nvm to install this specific version.
You will need pip to install Openfisca.
Run the following from the root of the project to install the dependencies
npm ci3.8.13.
You should install Python 3 in a virtual environment to prevent yourself from messing with your main python installation. The instructions below rely on the built-in venv module so that there are no additional external dependencies:
python3 -m venv .venv # create the virtual environment in the .venv folder
source .venv/bin/activate # activate the virtual environment
pip install pip --upgrade # make sure we're using the latest pip version
npm run install-openfisca # install dependenciesThen, to start the OpenFisca server, simply run source .venv/bin/activate followed by npm run openfisca.
OpenFisca dependencies are specified in openfisca/requirements.txt, a basic Python requirements file. It is possible to refer to non-production commit hashs but is prefered to use main-merged commits.
If you are working on openfisca-france and want to use your local version:
cd (...)/openfisca-france
pip install --editable .
If you want to test locally the app in production mode:
npm run build
npm run startFirst, start a Mongo server:
npm run dbThen, in another shell (you will have to run source .venv/bin/activate), start the Openfisca server:
OPENFISCA_WORKERS=1 npm run openfiscaFinally, in a third shell, start the server:
npm run serveThere are several levels of tests:
- Unit tests are executed by Jest and run with
npm test. - End-to-end test are executed with Cypress with
npm run cypress
You can safely use npm test && npm run cypress to drive your developments.
We use the framework MJML to design and integrate the templates. Sendinblue is our service to send emails.
The development server for emails can be easily start with:
node tools/mjml.js or npm run serve-mail
If you want to verify the email sending, the variable SEND_IN_BLUE_PRIVATE_KEY=API_SECRET should be configured in your .env file.
You can create a free account here or request one on the mattermost channel.
We use ESLint as a linter and Prettier to format the codebase. We also utilize some ESLint plugins, such as vue-eslint and eslint-plugin-cypress, to provide a support for tests and framework.
SSHs keys were generated to run scripts on the production server.
With the deploy key at hand, linked to the deploment script it is possible kick of a now deployment thanks to:
ssh [email protected] -i deployFor more, a normal/manual root connection is required.
-
npm run test-benefits-urlsvalidate links to 3rd parties. -
npm run huskywill install git hooks used to facilitate development and reduce the CI running time. -
Locally or on production, it is possible to visualize all the available benefits of the simulator. It is done by adding
debugas a parameter. It is also possible to setdebug=ppa,rsato choose which benefits are listed. -
Adding
debug=parcoursas a parameter, show a debug version of all the steps in the simulator, locally and production. -
OpenFisca tracer allows you to debug OpenFisca computations. (source)
-
npm run generate-missing-institutions-aides-veloallows you to generate missing institutions for the packageaides-velo. -
npm run test-definition-periodsallows you to valid the periods of openfisca requested variables. -
npm run evaluate-benefits <simulationId>allows you to evaluate benefits with simulation id. -
node tools/geographical-benefits-details.jsallows you to get the relevant benefits for each commune. -
node tools/get-all-steps.jsallows you to get all the steps and substeps of a simulation. -
node tools/mjms.jsallows you to generate emails which contain the result of a simulation or survey.
It is possible to locally debug changes in NetlifyCMS configuration.
- First, contribuer/public/admin/config.yml#L15 must be uncommented;
npx netlify-cms-proxy-servershould be ran from.andnpm run devshould be ran fromcontribuer.
Changes made will be reflected locally instead of generating pull requests in production.