Skip to content

Commit

Permalink
Merge pull request #412 from sudhanshugautam2911/food
Browse files Browse the repository at this point in the history
add: food delivery template
  • Loading branch information
Diptenusarkar authored Oct 25, 2023
2 parents 7b091f4 + f59265d commit b7b7d19
Show file tree
Hide file tree
Showing 125 changed files with 34,809 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ _Read in other languages:_
|121| [404 flower template](./404%20flower%20template/) | [click here](./404%20flower%20template/images/template.png) |
|122| [404 happy template](./404%20happy%20template/) | [click here](./404%20happy%20template/images/template.png) |
|123| [404 skull template](./404%20skull%20template/) | [click here](./404%20skull%20template/images/template.png) |
|124| [BrickBreake](./BrickBreaker/) | unavailable |
|124| [BrickBreake](./BrickBreaker/) | unavailable |
|125| [Food Delivery](./food-delivery/) | [click here](./food-delivery/img/Screenshot%202023-10-23%20223007.png) |

## For Contributors

Expand Down
8 changes: 8 additions & 0 deletions food-delivery/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
REACT_APP_FIREBASE_API_KEY = "AIzaSyDlIRaFgGkBfqlTEBy6zgoDSyNhXSqW0Oc"
REACT_APP_FIREBASE_AUTH_DOMAIN = "campusdeliveryapp.firebaseapp.com"
REACT_APP_FIREBASE_DB_URL = "https://campusdeliveryapp-default-rtdb.firebaseio.com"
REACT_APP_FIREBASE_PROJECT_ID = "campusdeliveryapp"
REACT_APP_FIREBASE_STORAGE_BUCCKET = "campusdeliveryapp.appspot.com"
REACT_APP_FIREBASE_MESSAGING_ID = "708561229840"
REACT_APP_FIREBASE_APP_ID = "1:708561229840:web:c721a6d936b8402aed1295"
REACT_APP_FIREBASE_MEASURMENT_ID = "G-J9L5HXVNPC"
5 changes: 5 additions & 0 deletions food-delivery/.firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "campusdeliveryapp"
}
}
73 changes: 73 additions & 0 deletions food-delivery/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Checkout Live site
https://campusdeliveryapp.web.app/

# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `npm start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.

The page will reload when you make changes.\
You may also see any lint errors in the console.

### `npm test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `npm run build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `npm run eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `npm run build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
16 changes: 16 additions & 0 deletions food-delivery/firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b7b7d19

Please sign in to comment.