Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example/sqlite basico #9

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .env.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
DB_PATH=./data/database.db
JSON_DB_PATH=./data/clubs.json
API_FOOTBALL_DATA=
SESSION_DB_PATH=./data/session.db
SESSION_SECRET=secreto por default (que puede tener espacios y caracteres no alfanuméricos)
Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Un CRUD/ABM (Create, Retrieve, Update, Delete ó Alta, Baja, Modificación) de c

## Diagrama

<img src="./crud_clubes_simple.png">

## Cómo instalar y correr este proyecto

El proyecto se instala con `npm install`
Expand All @@ -29,9 +31,6 @@ Adaptado de https://softwareontheroad.com/ideal-nodejs-project-structure/

| Ruta | explicación |
| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- |
| data | contiene las bases de datos de SQLite |
| data/database.db | base de datos principal del proyecto |
| data/session.db | base de datos para guardar las sesiones de nuestro proyecto |
| public | contiene los archivos estáticos que va a servir el navegador, acá se guardan las imágenes subidas |
| src | contiene toda nuestra aplicación |
| src/app.js | punto de entrada de nuestra aplicación |
Expand All @@ -52,10 +51,6 @@ Adaptado de https://softwareontheroad.com/ideal-nodejs-project-structure/
| src/module/club/view | archivos de presentación (interfaz) que se procesarán del lado del servidor (SSR, server side rendering) |
| src/module/club/module.js | archivo de entrada a este módulo que lo inicializa |

## Creando modelos nuevos

Si se crea un modelo de Sequelize nuevo, recordar cargarlo en el archivo `src/cli/init.db.js` para que la sincronización de la base de datos incluya el nuevo modelo.

## Configuración del IDE

El IDE debe soportar Prettier + ESLint, como por ejemplo (vscode)[https://blog.echobind.com/integrating-prettier-eslint-airbnb-style-guide-in-vscode-47f07b5d7d6a]
Binary file removed clubes_crud.jpg
Binary file not shown.
Binary file added crud_clubes_simple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading