Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5012596
fix: refazendo projeto
MilenaSuzumura Oct 7, 2023
12b26e6
feat: create Header.js
MilenaSuzumura Oct 7, 2023
554444d
feat: create Home.js
MilenaSuzumura Oct 7, 2023
1e165d3
feat: create Routes.js
MilenaSuzumura Oct 7, 2023
8da4687
install react-router-dom
MilenaSuzumura Oct 7, 2023
d83121d
Fix: Start made
MilenaSuzumura Oct 7, 2023
432401c
feat: configurei docker-compose
MilenaSuzumura Jan 27, 2024
745521a
feat: gitignore para o node_modules
MilenaSuzumura Jan 27, 2024
cd4163e
fix: instalei dependencias para criar o banco de dados com mysql
MilenaSuzumura Jan 27, 2024
e46e131
feat: configuração inicial do banco de dados
MilenaSuzumura Jan 27, 2024
562f2dc
feat: criei a model Prices
MilenaSuzumura Jan 27, 2024
0a3a813
feat: criei a model Hours
MilenaSuzumura Jan 27, 2024
a98cf59
feat: criei seeders Prices
MilenaSuzumura Jan 27, 2024
dd68078
feat: criei seeders Hours
MilenaSuzumura Jan 27, 2024
675dba9
feat: seeders de Hours terminado
MilenaSuzumura Jan 27, 2024
76029d1
fix: ajeitei o config colocando a configuração de outro projeto
MilenaSuzumura Jan 28, 2024
cc3a59a
feat: criei um dockerfile
MilenaSuzumura Jan 28, 2024
2644416
feat: add para criar o banco de dados, dropar e preencher.
MilenaSuzumura Jan 28, 2024
ce951ff
feat: add alguns scripts
MilenaSuzumura Jan 28, 2024
b2e6b3b
feat: add um app.js e um server.js de outro projeto
MilenaSuzumura Jan 28, 2024
0ec2bc8
fix: alterei a rota de onde começa o projeto
MilenaSuzumura Jan 28, 2024
645b96e
fix: alterei o nome do arquivo config.js na model
MilenaSuzumura Jan 28, 2024
0b9ff6c
feat: criei uma rota aleatoria somente para testar se estava funcionando
MilenaSuzumura Jan 28, 2024
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
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

28 changes: 0 additions & 28 deletions .eslintrc.json

This file was deleted.

7 changes: 0 additions & 7 deletions .gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

66 changes: 0 additions & 66 deletions README.md

This file was deleted.

1 change: 1 addition & 0 deletions app/backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
8 changes: 8 additions & 0 deletions app/backend/.sequelizerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const path = require('path');

module.exports = {
'config': path.resolve('src', 'config', 'config.js'),
'models-path': path.resolve('src', 'models'),
'seeders-path': path.resolve('src', 'seeders'),
'migrations-path': path.resolve('src', 'migrations'),
};
Loading