Aucune description

Olivier Massot 5190eb674e update cypress il y a 4 ans
assets 496032d0cb https://assistance.opentalent.fr/browse/V8-2613 il y a 4 ans
components a5b1ea809b revert previous commit il y a 4 ans
enums 1054b47e64 structures search - filters ok il y a 4 ans
lang 496032d0cb https://assistance.opentalent.fr/browse/V8-2613 il y a 4 ans
layouts 496032d0cb https://assistance.opentalent.fr/browse/V8-2613 il y a 4 ans
pages 39af4ef3d6 replace nuxt/images by vuetify images il y a 4 ans
plugins 63c6b5e1df implements theming il y a 4 ans
services 52f746667d add url parameters, disable SSR, include new structure data il y a 4 ans
static 8e062e5dc1 graphic improvements and routing fixes il y a 4 ans
store aadb3aaa64 nuxt init il y a 4 ans
test 2c26fe9bf7 fix cypress tests il y a 4 ans
types 52f746667d add url parameters, disable SSR, include new structure data il y a 4 ans
.babelrc aadb3aaa64 nuxt init il y a 4 ans
.editorconfig aadb3aaa64 nuxt init il y a 4 ans
.env.ci 9383fb5a54 update .env files il y a 4 ans
.env.local 9383fb5a54 update .env files il y a 4 ans
.env.preprod 9383fb5a54 update .env files il y a 4 ans
.env.prod 9383fb5a54 update .env files il y a 4 ans
.eslintrc.js aadb3aaa64 nuxt init il y a 4 ans
.gitignore 5838dcaec0 cypress tests on /structures ok il y a 4 ans
.gitlab-ci.yml e3af5bcf9d update start / build / deploiement configs il y a 4 ans
README.md e3af5bcf9d update start / build / deploiement configs il y a 4 ans
cypress.json f6dab45993 fix CI il y a 4 ans
ecosystem.config.js e3af5bcf9d update start / build / deploiement configs il y a 4 ans
jest.config.js f02ca7420f minor fixes and tests skeletton il y a 4 ans
logo.png a6ac6d668a structures: performances optimization il y a 4 ans
nuxt.config.js 39af4ef3d6 replace nuxt/images by vuetify images il y a 4 ans
package.json e3af5bcf9d update start / build / deploiement configs il y a 4 ans
todo.md 63c6b5e1df implements theming il y a 4 ans
tsconfig.json 0eee2f60ce refactor fetchers into a provider service il y a 4 ans
yarn.lock 5190eb674e update cypress il y a 4 ans

README.md

Frames

pipeline status

Frames est une application Nuxt proposant des iframes à inclure sur des sites tierces.

Iframes implémentées:

A voir:

Opérations courantes

Déploiement

Premier déploiement en tant que service

Prérequis 1 : PM2 doit être installé de manière globale sur la machine hôte (https://nuxtjs.org/deployments/pm2/)

On commence par cloner le projet app, puis par se placer dans le répertoire ainsi créé. On créé un symlink vers le fichier .env.xxx voulu sous le nom de .env (selon l'environnement)

ln -s .env.xxx .env

Pour déployer le projet en mode SSR, on commence par mettre à jour et compiler :

yarn install
yarn build

On lance ensuite le service avec :

pm2 start

Vérifier le statut avec :

pm2 show frames

On pourra ensuite interagir avec le service ainsi :

pm2 restart frames
pm2 stop frames
pm2 logs frames

On enregistre le service pour qu'il soit relancé lors du boot de la machine: https://pm2.keymetrics.io/docs/usage/startup/

En tant que non-root:

pm2 startup

Puis, comme la commande précédente le suggère, on lance en tant que root:

On sauvegarde la nouvelle configuration avec:

pm2 save

Mettre à jour

Se placer dans le répertoire de l'application, puis lancer:

yarn deploy

Cette commande est un alias qui équivaut à lancer:

git pull
yarn install
yarn build
pm2 restart

Run tests

To run unit tests:

yarn test

To run end-to-end tests with Cypress:

yarn cypress

To run it in command line:

yarn cypress:run