npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ci-cd-ynov-yves-estrada

v0.7.0

Published

Ce projet fullstack ReactJS / Flask (Python) / MySQL / Adminer a été réalisé dans le cadre d’un projet sur l’intégration et le déploiement continus (CI/CD). Il permet d’expérimenter le cycle de vie complet d’une application, de son développement local à l

Readme

ci-cd-ynov-yves-estrada

Ce projet fullstack ReactJS / Flask (Python) / MySQL / Adminer a été réalisé dans le cadre d’un projet sur l’intégration et le déploiement continus (CI/CD). Il permet d’expérimenter le cycle de vie complet d’une application, de son développement local à l'exécution de tests automatisés et son déploiement via Docker. Le backend expose une API en Python via Flask, connectée à une base de données MySQL.
Le frontend est une application React consommant cette API.
Adminer permet une visualisation simplifiée de la base de données.

Prérequis

Avant de lancer le projet, assurez-vous d’avoir Docker installé sur votre machine.

Vérifiez sa présence avec :

docker -v

Si Docker n'est pas installé, vous pouvez le télécharger depuis le site officiel de Docker.

Lancer les conteneurs Docker

  1. Clonez le dépôt si ce n’est pas déjà fait :
git clone https://github.com/Arseid/ci-cd-ynov.git
cd ci-cd-ynov-yves-estrada
  1. Créer un fichier .env
    À la racine du projet, créez un fichier .env contenant les variables d’environnement nécessaires :
# Configuration MySQL
MYSQL_HOST=db
MYSQL_ROOT_PASSWORD=your_root_password
MYSQL_DATABASE=your_database
MYSQL_USER=your_user

# Configuration React + Cypress
REACT_APP_SERVER_BASE_URL=http://localhost:8000
[email protected]
CYPRESS_TEST_ADMIN_PASSWORD=your_123456

Remplacez les valeurs your_* par celles souhaitées.

  1. Démarrer les conteneurs
    Utilisez la commande suivante pour construire et lancer les services Docker :
docker-compose -f docker-compose-python-server.yml up -d --build

Cette commande va construire et démarrer les conteneurs définis dans le fichier docker-compose-python-server.yml.

Accéder aux services

Une fois les conteneurs en cours d'exécution, vous pouvez accéder aux services suivants :

Lancer les tests d'intégration, end-to-end et unitaires de l'application React

Pour lancer les tests d'intégration, end-to-end et unitaires, vous pouvez utiliser les commandes suivantes :

  • Pour les tests d'intégration et unitaires :
npm run test
  • Pour les tests end-to-end avec Cypress :
npm run cypress