bedca9c1238114b2c374367644e6737c9e403db6
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...
},
},
])
Languages
TypeScript
87.2%
JavaScript
9%
HTML
3.1%
CSS
0.4%
Dockerfile
0.2%
Other
0.1%