Tool | Link |
---|---|
Java | https://www.java.com/pt-BR/ |
InteliJ Community | https://www.jetbrains.com/pt-br/idea/ |
Spring | https://spring.io/ |
PostgreSql Versão 9.4 | https://www.postgresql.org/ |
PGAdmin | https://www.pgadmin.org/ |
Heroku | https://dashboard.heroku.com/ |
/* CRIAR TABELA STOCK */
create table public.tb_stock (
id numeric (9) not null,
"date" date not null,
"name" varchar (100) not null,
price numeric(8,2) not null,
variation numeric (5,2) not null,
constraint tb_stock_pkkey primary key (id)
);
/* HABILITANDO O ÍNDICE INCREMENTAL PARA AS STOCK */
create sequence hibernate_sequence start 1;
Fase | Plataforma | Repo | Link |
---|---|---|---|
Back-End | Heroku | Git | Api Rest - Stock |
Front-End | GitPages | Git | Dashbord - Stock |
Esse projeto faz parte da Santander Week pelo Banco Santander e em conjunto com plataforma de ensino Digital Innovation One Inc e teve como objetivo uma API-Rest para integrar com a interface do Dashboard de Apresentação de Ações Diário no Mercado Financeiro.