Skip to content

Commit 6e66f00

Browse files
committed
init project
1 parent 60d1e2a commit 6e66f00

File tree

156 files changed

+22327
-2
lines changed

Some content is hidden

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

156 files changed

+22327
-2
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Example user template template
3+
### Example user template
4+
5+
# IntelliJ project files
6+
.idea
7+
*.iml
8+
out
9+
gen
10+
node_modules/*
11+
yarn.lock

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"singleQuote": false,
4+
"semi": true,
5+
"trailingComma": "all"
6+
}

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# History
2+
3+
## v0.0.1(2020-11-22)

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
1-
# spotrix
2-
Spotrix for everyone
1+
# Spotrix
2+
3+
![logo](./public/spotrix.svg)
4+
5+
`Spotrix for everyone`
6+
7+
This is a short describe about spotrix.
8+
9+
Powered by [Guinsoo Lab](https://guinsoolab.github.io/glab/).
10+
11+
12+
13+

config-overrides.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
2+
3+
module.exports = function override(config, env) {
4+
config.plugins.push(new MonacoWebpackPlugin({
5+
languages: ['sql']
6+
}));
7+
return config;
8+
}

package-lock.json

Lines changed: 14677 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"name": "spotrix",
3+
"version": "1.0.0",
4+
"private": true,
5+
"resolutions": {
6+
"websocket-extensions": "^0.1.4"
7+
},
8+
"dependencies": {
9+
"@material-ui/core": "^4.3.0",
10+
"@material-ui/icons": "^4.2.1",
11+
"@material-ui/styles": "^4.3.0",
12+
"d3-request": "^1.0.6",
13+
"electron": "^11.0.3",
14+
"font-awesome": "^4.7.0",
15+
"koa": "^2.13.0",
16+
"lowdb": "^1.0.0",
17+
"monaco-editor": "^0.21.2",
18+
"papaparse": "^5.3.0",
19+
"react": "^16.8.6",
20+
"react-dom": "^16.8.6",
21+
"react-dropzone": "^11.2.4",
22+
"react-flow-renderer": "^8.0.0",
23+
"react-monaco-editor": "^0.40.0",
24+
"react-router-dom": "^5.0.1",
25+
"react-scripts": "3.0.1",
26+
"react-sparklines": "^1.7.0",
27+
"react-split-pane": "^0.1.92",
28+
"react-syntax-highlighter": "^11.0.2",
29+
"react-toastify": "^5.3.2",
30+
"recharts": "^1.8.5",
31+
"tinycolor2": "^1.4.1"
32+
},
33+
"scripts": {
34+
"start": "react-app-rewired start",
35+
"build": "react-app-rewired build",
36+
"test": "react-app-rewired test",
37+
"eject": "react-app-rewired eject"
38+
},
39+
"eslintConfig": {
40+
"extends": "react-app"
41+
},
42+
"browserslist": {
43+
"production": [
44+
">0.2%",
45+
"not dead",
46+
"not op_mini all"
47+
],
48+
"development": [
49+
"last 1 chrome version",
50+
"last 1 firefox version",
51+
"last 1 safari version"
52+
]
53+
},
54+
"devDependencies": {
55+
"@material-ui/lab": "^4.0.0-alpha.56",
56+
"@types/minio": "^7.0.6",
57+
"clsx": "^1.1.1",
58+
"faker": "^5.1.0",
59+
"jdbc": "^0.7.2",
60+
"lodash": "^4.17.20",
61+
"minio": "^7.0.16",
62+
"monaco-editor-webpack-plugin": "^2.0.0",
63+
"prettier": "^1.19.1",
64+
"prop-types": "^15.7.2",
65+
"react-app-rewired": "^2.1.6",
66+
"react-color": "^2.19.3",
67+
"react-virtualized": "^9.22.2"
68+
}
69+
}

public/favicon.ico

74.2 KB
Binary file not shown.

public/index.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
6+
<meta
7+
name="viewport"
8+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
9+
/>
10+
<meta name="theme-color" content="#000000" />
11+
<!--
12+
manifest.json provides metadata used when your web app is installed on a
13+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
14+
-->
15+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
16+
<!--
17+
Notice the use of %PUBLIC_URL% in the tags above.
18+
It will be replaced with the URL of the `public` folder during the build.
19+
Only files inside the `public` folder can be referenced from the HTML.
20+
21+
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
22+
work correctly both with client-side routing and a non-root public URL.
23+
Learn how to configure a non-root public URL by running `npm run build`.
24+
-->
25+
<title>spotrix</title>
26+
<meta name="description" content="spotrix">
27+
<meta name="keywords" content="data insight, insight, BI, quick insight, smart">
28+
<meta name="author" content="cius.ji">
29+
</head>
30+
<body style="font-family: 'Roboto', sans-serif;">
31+
<noscript>You need to enable JavaScript to run this app.</noscript>
32+
<div id="root"></div>
33+
<!--
34+
This HTML file is a template.
35+
If you open it directly in the browser, you will see an empty page.
36+
37+
You can add web fonts, meta tags, or analytics to this file.
38+
The build step will place the bundled scripts into the <body> tag.
39+
40+
To begin the development, run `npm start` or `yarn start`.
41+
To create a production bundle, use `npm run build` or `yarn build`.
42+
-->
43+
</body>
44+
</html>

0 commit comments

Comments
 (0)