Skip to content

Commit 5fe4b42

Browse files
Front end commit
0 parents  commit 5fe4b42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+9144
-0
lines changed

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
PROJECT TITLE: GrabABite
2+
3+
PROJECT DESCRIPTION:
4+
5+
The project is about finding restaurants in your city and filtering out results as per options selected. Used React library to develop front end and MongoDb for backn end.
6+
7+
PRE-REQUISITE:
8+
9+
1) Node.js v10.15.3
10+
2) MongoDb client with database
11+
12+
Features:
13+
14+
1) After importing our project make sure the libraries are added to your project run npm install".
15+
2) Run "npm start".
16+
3) You will be logged in as Guest user
17+
4) Login if you have already resgistered or register if new user.
18+
5) Select city from drop down select.
19+
6) Edit user profile.
20+
7) View menu and gallery of each restaurants.
21+
8) Password encryption at back end.
22+
9) Tooltips for user.
23+
10) Toggle theme to change background theme from light mode to dark mode.
24+
11) Reserve seat for logged in user
25+
12) 24/7 customer support to user by implementing chat box on every page
26+
13) Embeded email.js service to send email to grababite.com for any issues
27+
28+
29+
AUTHORS:
30+
1) Ajay Mohandas
31+
32+
REFERENCES:
33+
1) https://reactjs.org/docs/getting-started.html
34+
2) https://material-ui.com/components/drawers/
35+
3) https://www.mongodb.com/products/compass

debug.log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[0407/175217.374:ERROR:process_reader_win.cc(151)] SuspendThread: Access is denied. (0x5)

package.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"name": "myapp",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"@fortawesome/fontawesome-svg-core": "^1.2.28",
7+
"@fortawesome/free-brands-svg-icons": "^5.13.0",
8+
"@fortawesome/react-fontawesome": "^0.1.9",
9+
"@material-ui/core": "^4.9.5",
10+
"@material-ui/icons": "^4.9.1",
11+
"@testing-library/jest-dom": "^4.2.4",
12+
"@testing-library/react": "^9.3.2",
13+
"@testing-library/user-event": "^7.1.2",
14+
"axios": "^0.19.2",
15+
"bootstrap": "^4.4.1",
16+
"glyphicons": "^0.2.0",
17+
"react": "^16.13.0",
18+
"react-alert": "^7.0.0",
19+
"react-dom": "^16.13.0",
20+
"react-modal": "^3.11.2",
21+
"react-modal-image": "^2.5.0",
22+
"react-recaptcha": "^2.3.10",
23+
"react-router-dom": "^5.1.2",
24+
"react-scripts": "3.4.0",
25+
"react-toastify": "^5.5.0",
26+
"react-tooltip": "^4.2.3",
27+
"styled-components": "^5.0.1"
28+
},
29+
"scripts": {
30+
"start": "react-scripts start",
31+
"build": "react-scripts build",
32+
"test": "react-scripts test",
33+
"eject": "react-scripts eject"
34+
},
35+
"eslintConfig": {
36+
"extends": "react-app"
37+
},
38+
"browserslist": {
39+
"production": [
40+
">0.2%",
41+
"not dead",
42+
"not op_mini all"
43+
],
44+
"development": [
45+
"last 1 chrome version",
46+
"last 1 firefox version",
47+
"last 1 safari version"
48+
]
49+
},
50+
"devDependencies": {
51+
"css-loader": "^3.4.2",
52+
"react-bootstrap": "^1.0.0",
53+
"style-loader": "^1.1.3"
54+
}
55+
}

0 commit comments

Comments
 (0)