Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
codecrafterrr authored Jul 6, 2024
1 parent 25bba1b commit 91787e0
Show file tree
Hide file tree
Showing 100 changed files with 20,733 additions and 13 deletions.
4 changes: 4 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
REACT_APP_DATA_START_YEAR=2008
REACT_APP_DATA_END_YEAR=2023
REACT_APP_API_ROOT_URL=
# REACT_APP_API_ROOT_URL=http://localhost:8080 # Use this line when developing locally
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
27 changes: 27 additions & 0 deletions HELP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Read Me First
The following was discovered as part of building this project:

* The original package name 'io.javabrains.ipl-dashboard' is invalid and this project uses 'io.javabrains.ipldashboard' instead.

# Getting Started

### Reference Documentation
For further reference, please consider the following sections:

* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.1.9/maven-plugin/reference/html/)
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.1.9/maven-plugin/reference/html/#build-image)
* [Spring Web](https://docs.spring.io/spring-boot/docs/3.1.9/reference/htmlsingle/index.html#web)
* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/3.1.9/reference/htmlsingle/index.html#using.devtools)
* [Spring Batch](https://docs.spring.io/spring-boot/docs/3.1.9/reference/htmlsingle/index.html#howto.batch)
* [Spring Data JPA](https://docs.spring.io/spring-boot/docs/3.1.9/reference/htmlsingle/index.html#data.sql.jpa-and-spring-data)

### Guides
The following guides illustrate how to use some features concretely:

* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)
* [Creating a Batch Service](https://spring.io/guides/gs/batch-processing/)
* [Accessing Data with JPA](https://spring.io/guides/gs/accessing-data-jpa/)

69 changes: 56 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,70 @@
# IPL-Dashboard-for-Analysis
Get to know about your favorite IPL team along with their past details for fact checking, like wins and loss ratio etc that can be accessed by team and the tournament year.
# Getting Started with Create React App

This project is made on Full stack Development using SpringBoot and React JS.
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

Following are the technologies used
- Spring Boot
- Spring Batch
- React JS
- AWS BeanStalk
- HSQL DB
- Java Persistence API
- Repositories and JPQL
## Available Scripts

In the project directory, you can run:

![Spring Boot Spring Batch Java Persistence API, Repositories and JPQL HSQL DB React JS AWS BeanStalk](https://github.com/codecrafterrr/IPL-Dashboard-for-Analysis/assets/122688766/744f6f20-8571-4f17-96b6-9da4b9fbc017)
### `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.

![MIT License](https://img.shields.io/badge/License-MIT-green.svg)
### `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)
32 changes: 32 additions & 0 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"files": {
"main.css": "/static/css/main.a136b288.css",
"main.js": "/static/js/main.bd8a5429.js",
"static/js/453.8ab44547.chunk.js": "/static/js/453.8ab44547.chunk.js",
"static/media/csk.jpg": "/static/media/csk.3bfbc92d437c00f7b0cd.jpg",
"static/media/srh.jpg": "/static/media/srh.f0566932bc6fba8cc53f.jpg",
"static/media/mi.jpg": "/static/media/mi.fa6acd7336fc41cc04ff.jpg",
"static/media/rpsj.jpg": "/static/media/rpsj.9707c919b1f79ba1ae00.jpg",
"static/media/kkr.jpg": "/static/media/kkr.310a8a6bbd3c7ce6639e.jpg",
"static/media/gt.jpg": "/static/media/gt.1b0d3a0eba78b1a742e1.jpg",
"static/media/lsg.png": "/static/media/lsg.3e79b375d538297ea4d0.png",
"static/media/kochi.jpeg": "/static/media/kochi.488c33e8d17d2e414e1e.jpeg",
"static/media/kxip.jpeg": "/static/media/kxip.1300ea3f4e398587b1a0.jpeg",
"static/media/cricket.png": "/static/media/cricket.88c979b446942d6ee007.png",
"static/media/gujaratlions.jpeg": "/static/media/gujaratlions.9323eefc7b9d95a2abc1.jpeg",
"static/media/rr.jpeg": "/static/media/rr.98a1c181781412d3357a.jpeg",
"static/media/punjabkings.jpg": "/static/media/punjabkings.c60b955c140d53ab6b7f.jpg",
"static/media/pw.jpeg": "/static/media/pw.418f252811dcee955a40.jpeg",
"static/media/rcb.jpeg": "/static/media/rcb.2be248c7c4bd17d997e3.jpeg",
"static/media/delhicapitals.jpeg": "/static/media/delhicapitals.3c90cb2f6bb0faf75252.jpeg",
"static/media/DeccanChargers.jpeg": "/static/media/DeccanChargers.8218a94bc3c809264783.jpeg",
"index.html": "/index.html",
"main.a136b288.css.map": "/static/css/main.a136b288.css.map",
"main.bd8a5429.js.map": "/static/js/main.bd8a5429.js.map",
"453.8ab44547.chunk.js.map": "/static/js/453.8ab44547.chunk.js.map"
},
"entrypoints": [
"static/css/main.a136b288.css",
"static/js/main.bd8a5429.js"
]
}
Binary file added build/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="../src/components/cricket.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="../src/components/cricket.png"/><link rel="manifest" href="/manifest.json"/><link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.css" rel="stylesheet"/><title>CricNewz</title><script defer="defer" src="/static/js/main.bd8a5429.js"></script><link href="/static/css/main.a136b288.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body><script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.3.0/flowbite.min.js"></script><script src="https://smtpjs.com/v3/smtp.js"></script></html>
Binary file added build/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions build/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
2 changes: 2 additions & 0 deletions build/static/css/main.a136b288.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 91787e0

Please sign in to comment.