From 22b3fe2c6acbf6b47878d2ebd9a01d2998023d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Nicol=C3=A1s=20Lavais=C3=A9=20Lanzillotta?= Date: Wed, 22 Apr 2026 18:40:45 -0300 Subject: [PATCH] Actualizar README.md --- README.md | 37 +++++-------------------------------- 1 file changed, 5 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index 702c9cf..848c9ac 100644 --- a/README.md +++ b/README.md @@ -5,41 +5,14 @@ Sistema de gestion de historias clinicas ambulatorias y de internacion escrito e ## Deployment En base a imagen de docker -1. Clonar el repositorio -2. docker conpose up -d +1. mkdir administracionhce +2. cd administracionhce +3. git clone https://git.pi.neuroblastos.ar/snlavaise/administracionHospital #Clonar localmente el repositorio +4. docker compose up -d El compose compilara la imagen de docker localmente e iniciara el contenedor -3. Acceder a http://localhost:8077 - -The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). +Accesible a través de http://localhost:8077 -You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: -```js -// eslint.config.js -import reactX from 'eslint-plugin-react-x' -import reactDom from 'eslint-plugin-react-dom' - -export default defineConfig([ - globalIgnores(['dist']), - { - files: ['**/*.{ts,tsx}'], - extends: [ - // Other configs... - // Enable lint rules for React - reactX.configs['recommended-typescript'], - // Enable lint rules for React DOM - reactDom.configs.recommended, - ], - languageOptions: { - parserOptions: { - project: ['./tsconfig.node.json', './tsconfig.app.json'], - tsconfigRootDir: import.meta.dirname, - }, - // other options... - }, - }, -]) -```