Skip to content

Commit 0f294b8

Browse files
trinachoudhury1mggeekayushayush-mehra
authored
Performance merge (#6)
* Basic SSR * SSR with basic redux setup * Improve SSR command * Clean up 01-basic-app-setup * Clean up 02-html-font-setup * Clean up 03-css-setup * added procfile and script * fixed port * static files * port check * port fix * Remove console logs * Replace images with CDN images * Add data to store * Remove README * Dog Screen Updated * New Dog View Changes in all modules Co-authored-by: geekayush <[email protected]> Co-authored-by: ayush <[email protected]>
1 parent d114db0 commit 0f294b8

File tree

239 files changed

+108895
-44293
lines changed

Some content is hidden

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

239 files changed

+108895
-44293
lines changed

.gitignore

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1-
node_modules
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
215
.DS_Store
3-
build
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*

01-basic-app-setup/Procfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: npm run server:prod

01-basic-app-setup/package-lock.json

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

01-basic-app-setup/package.json

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
{
2-
"name": "01-basic-app-setup",
3-
"version": "0.1.0",
4-
"private": true,
5-
"dependencies": {
6-
"axios": "^0.27.2",
7-
"cors": "^2.8.5",
8-
"express": "^4.18.1",
9-
"lodash": "^4.17.21",
10-
"nodemon": "^2.0.19",
11-
"react": "^18.2.0",
12-
"react-dom": "^18.2.0",
13-
"react-router-dom": "^6.3.0",
14-
"react-scripts": "5.0.1",
15-
"serve-favicon": "^2.5.0"
16-
},
17-
"scripts": {
18-
"start": "react-scripts start",
19-
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
20-
"server": "nodemon ./server/index.js",
21-
"nossr:client:serve": "npm run build && serve -s build",
22-
"prod": "npm run build && NODE_ENV=production && npm run server"
23-
},
24-
"eslintConfig": {
25-
"extends": [
26-
"react-app",
27-
"react-app/jest"
28-
]
29-
},
30-
"browserslist": {
31-
"production": [
32-
">0.2%",
33-
"not dead",
34-
"not op_mini all"
35-
],
36-
"development": [
37-
"last 1 chrome version",
38-
"last 1 firefox version",
39-
"last 1 safari version"
40-
]
41-
},
42-
"prettier": {
43-
"tabWidth": 4,
44-
"indentStyle": "space"
45-
}
2+
"name": "01-basic-app-setup",
3+
"version": "0.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"axios": "^0.27.2",
7+
"cors": "^2.8.5",
8+
"express": "^4.18.1",
9+
"lodash": "^4.17.21",
10+
"nodemon": "^2.0.19",
11+
"react": "^18.2.0",
12+
"react-dom": "^18.2.0",
13+
"react-router-dom": "^6.3.0",
14+
"react-scripts": "5.0.1",
15+
"serve-favicon": "^2.5.0"
16+
},
17+
"scripts": {
18+
"start": "DISABLE_ESLINT_PLUGIN=true NODE_ENV=development react-scripts start",
19+
"server:dev": "NODE_ENV=development nodemon ./server/index",
20+
"build": "DISABLE_ESLINT_PLUGIN=true NODE_ENV=production react-scripts build",
21+
"serve": "serve -s build",
22+
"server:prod": "NODE_ENV=production nodemon ./server/index"
23+
},
24+
"eslintConfig": {
25+
"extends": [
26+
"react-app",
27+
"react-app/jest"
28+
]
29+
},
30+
"browserslist": {
31+
"production": [
32+
">0.2%",
33+
"not dead",
34+
"not op_mini all"
35+
],
36+
"development": [
37+
"last 1 chrome version",
38+
"last 1 firefox version",
39+
"last 1 safari version"
40+
]
41+
},
42+
"prettier": {
43+
"tabWidth": 4,
44+
"indentStyle": "space"
45+
}
4646
}
683 KB
Loading
138 KB
Loading
96.1 KB
Loading
345 KB
Loading
165 KB
Loading
311 KB
Loading

0 commit comments

Comments
 (0)