1.5 KiB
1.5 KiB
Sistema de Gestion de Historia Clinica Electronica
Sistema de gestion de historias clinicas ambulatorias y de internacion escrito en TypeScript, React, Vite y Talwind. Backend SQLite 3
Deployment
En base a imagen de docker
- Clonar el repositorio
- docker conpose up -d
El compose compilara la imagen de docker localmente e iniciara el contenedor
- 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.
You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:
// 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...
},
},
])