Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d4178df
structure
badyalberto Jan 3, 2022
e1a6707
View Grid Products, Login, SignUp
badyalberto Jan 4, 2022
f783dd2
workbenck color + npm i
marck-developer Jan 4, 2022
eacb99a
Merge branch 'main' of https://github.com/badyalberto/node-develop-yo…
marck-developer Jan 4, 2022
004eb70
firebase installed
gonzalogarahuetes Jan 7, 2022
3199f35
FB and DB sync
gonzalogarahuetes Jan 7, 2022
4523a75
a
marck-developer Jan 7, 2022
e8d07f2
aaaa
badyalberto Jan 7, 2022
9056a3a
Products Fetching
gonzalogarahuetes Jan 7, 2022
c380421
signin nd signout
badyalberto Jan 7, 2022
55ba0f4
products
badyalberto Jan 10, 2022
4317b91
Console.log Deleted
gonzalogarahuetes Jan 10, 2022
d2c94d1
Merge branch 'main' of https://github.com/badyalberto/node-develop-yo…
marck-developer Jan 10, 2022
46f08f5
Navbar username, product page
gonzalogarahuetes Jan 10, 2022
6a1f806
Local Storage Functionalities
gonzalogarahuetes Jan 11, 2022
e7732e4
fix local storage
badyalberto Jan 11, 2022
54680b4
Merge branch 'main' into ShoppingCart
badyalberto Jan 11, 2022
2b90d9d
After pull
gonzalogarahuetes Jan 11, 2022
7c0cfc4
Category Division
gonzalogarahuetes Jan 11, 2022
3dbab49
Merge branch 'main' into ShoppingCart
gonzalogarahuetes Jan 11, 2022
fa150e1
After Merge
gonzalogarahuetes Jan 11, 2022
b361718
finished
badyalberto Jan 13, 2022
6636aca
finished
badyalberto Jan 13, 2022
4332101
Dashboard CRUD
gonzalogarahuetes Jan 13, 2022
9e0d7b8
After merge
gonzalogarahuetes Jan 13, 2022
d301c01
Merge errors fixed
gonzalogarahuetes Jan 13, 2022
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
7 changes: 7 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
REACT_APP_API_KEY="AIzaSyAkqtzvUgBJV4LelGiHOrwNDnwgnQ5ghuE"
REACT_APP_AUTH_DOMAIN="mvcproject-7ca7f.firebaseapp.com"
REACT_APP_PROJECT_ID="mvcproject-7ca7f"
REACT_APP_STORAGE_BUCKET="mvcproject-7ca7f.appspot.com"
REACT_APP_MESSAGING_SENDER_ID="874289015741"
REACT_APP_APP_ID="1:874289015741:web:a0dd9bf84c4870dd9ec0d4"
REACT_APP_API_BASE_URL=http://localhost:4000
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
/build

# misc
.env
.DS_Store
.env.local
.env.development.local
Expand Down
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#8d0c0b",
"activityBar.activeBorder": "#000000",
"activityBar.background": "#8d0c0b",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#000000",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#8d0c0b",
"statusBar.background": "#5e0807",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#8d0c0b",
"statusBarItem.remoteBackground": "#5e0807",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#5e0807",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#5e080799",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#5E0807"
}
9,710 changes: 4,244 additions & 5,466 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"firebase": "^8.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
Expand Down Expand Up @@ -49,6 +52,7 @@
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-react": "^7.27.1",
"prettier": "^2.5.1"
"prettier": "^2.5.1",
"tailwindcss": "^3.0.8"
}
}
1 change: 1 addition & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link href="style.css" rel="stylesheet">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
Loading