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

Teste Debora Fantini #19

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f374034
setup: installation of dependencies and structure of the project
deborafantinif Feb 9, 2023
da5d4bd
fix: add gitignore
deborafantinif Feb 9, 2023
e5357b1
feat: json data insertion into database [mysql and sequelize]
deborafantinif Feb 9, 2023
a19b71f
feat: route read all beers [get]/beers
deborafantinif Feb 9, 2023
8dcdabd
feat: route read one beer [get]/beers/:id
deborafantinif Feb 9, 2023
f80b740
feat: route delete a beer [delete]/beers/:id
deborafantinif Feb 9, 2023
99a9fc2
feat: route create a beer [post]/beers/
deborafantinif Feb 10, 2023
717d63e
feat: route update a beer [put]/beers/:id
deborafantinif Feb 10, 2023
b56d4ae
Merge pull request #1 from deborafantinif/feature_back
deborafantinif Feb 10, 2023
89bab2a
feat: header component
deborafantinif Feb 10, 2023
ce1b63b
feat: list all beers home page
deborafantinif Feb 10, 2023
7e58f5f
feat: delete a beer home page
deborafantinif Feb 10, 2023
b4f3ff2
feat: update a beer edit page
deborafantinif Feb 10, 2023
8c2cf9e
feat: create new a beer new page
deborafantinif Feb 10, 2023
679553a
feat: pagination all beers
deborafantinif Feb 11, 2023
30b36a5
style: header
deborafantinif Feb 11, 2023
4f5c796
style: card
deborafantinif Feb 11, 2023
32a4f33
style: pagination
deborafantinif Feb 11, 2023
d3a6fef
style: footer
deborafantinif Feb 11, 2023
f79176b
style: new beer
deborafantinif Feb 11, 2023
9728f81
style: updated beer
deborafantinif Feb 11, 2023
d592fec
fix: beer search flow
deborafantinif Feb 13, 2023
1d5527e
fix: beer delete flow
deborafantinif Feb 13, 2023
2d5d8c7
fix: change number port[server]
deborafantinif Feb 13, 2023
f0eb78a
Merge pull request #2 from deborafantinif/feature_front
deborafantinif Feb 13, 2023
861f7df
fix: add script npm start
deborafantinif Feb 13, 2023
22f993a
Merge pull request #3 from deborafantinif/feature_back
deborafantinif Feb 13, 2023
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
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
**/coverage
**/node_modules*
**/.nyc_output
**/*.log
**/build*
coverage
front.eval
back.eval
.vscode*
.env
24 changes: 24 additions & 0 deletions app/client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
16 changes: 16 additions & 0 deletions app/client/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading