Thomas Fransolet 7439412d34 update seo
2026-04-27 09:53:17 +02:00
2026-04-27 09:53:17 +02:00
2026-04-27 09:53:17 +02:00
2026-02-19 14:02:20 +01:00
2026-04-26 09:54:53 +02:00
2026-04-27 09:53:17 +02:00

myinfomate-landing

Site vitrine de la solution MyInfoMate (Next.js 16 / Tailwind CSS v4).

Dev local

npm install
npm run dev       # http://localhost:3000
npm run build
npm run lint

Déploiement

1. Builder et pusher l'image

docker build -t registry.unov.be/myinfomate/landing:latest .
docker push registry.unov.be/myinfomate/landing:latest

2. Sur le VPS — mettre à jour le conteneur

docker pull registry.unov.be/myinfomate/landing:latest
docker compose up -d myinfomate-landing

Config Traefik (docker-compose sur le VPS)

myinfomate-landing:
  container_name: "myinfomate-landing"
  image: registry.unov.be/myinfomate/landing:latest
  networks:
    - web
  restart: always
  labels:
    - "traefik.enable=true"
    - "traefik.http.routers.landing.rule=Host(`myinfomate.be`)"
    - "traefik.http.routers.landing.entrypoints=web"
    - "traefik.http.routers.landing.middlewares=redirect@file"
    - "traefik.http.routers.landing-secured.rule=Host(`myinfomate.be`)"
    - "traefik.http.routers.landing-secured.entrypoints=web-secured"
    - "traefik.http.routers.landing-secured.tls.certresolver=mytlschallenge"

Le certificat SSL est géré automatiquement par Traefik (Let's Encrypt).

Description
No description provided
Readme 5 MiB
Languages
TypeScript 95.3%
HTML 4.2%
CSS 0.3%
JavaScript 0.1%