Skip to content

Commit 8f5ba26

Browse files
Added Remix (#65)
* move folder insided * try setting up theme * initial remix setup * issue solved with svg icon loading * - Issue solved with css loading when visit not found page and then back * issue solved with chart * Issue solved with routing * Setup 404 page and setup meta for seo * - eslint, prettier setup and formating code * - Rename file name * Delete remix directory * rename remix dir * updates on readme and package * removed yarn * Update prod.yml --------- Co-authored-by: Harshad <codedthemes@gmail.com> Co-authored-by: Milan Bhikadiya <milanbhikadiya22@gmail.com>
1 parent 1fa10ae commit 8f5ba26

221 files changed

Lines changed: 63852 additions & 9927 deletions

File tree

Some content is hidden

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

.github/workflows/prod.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ jobs:
2222
- name: 🚚 Get latest code
2323
uses: actions/checkout@v2
2424

25-
- name: Use Node.js 16
25+
- name: Use Node.js 18
2626
uses: actions/setup-node@v2-beta
2727
with:
28-
node-version: '16'
28+
node-version: '18'
2929

3030
- name: 🔨 Build Project
3131
run: |
32+
cd create-react-app
3233
yarn
3334
yarn build
3435
@@ -37,8 +38,8 @@ jobs:
3738
env:
3839
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
3940
# ARGS: "-rltgoDzvO --delete"
40-
SOURCE: 'build/'
41+
SOURCE: 'create-react-app/build/'
4142
REMOTE_HOST: 192.34.62.123
4243
REMOTE_USER: berry
4344
TARGET: public_html/free
44-
EXCLUDE: '/dist/, /node_modules/'
45+
EXCLUDE: '/create-react-app/dist/, /create-react-app/node_modules/'
File renamed without changes.
File renamed without changes.

create-react-app/README.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Getting Started with Create React App
2+
3+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4+
5+
## Available Scripts
6+
7+
In the project directory, you can run:
8+
9+
### `npm install`
10+
11+
Install packages
12+
13+
### `npm start`
14+
15+
Runs the app in the development mode.\
16+
Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
17+
18+
The page will reload when you make changes.\
19+
You may also see any lint errors in the console.
20+
21+
### `npm test`
22+
23+
Launches the test runner in the interactive watch mode.\
24+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
25+
26+
### `npm run build`
27+
28+
Builds the app for production to the `build` folder.\
29+
It correctly bundles React in production mode and optimizes the build for the best performance.
30+
31+
The build is minified and the filenames include the hashes.\
32+
Your app is ready to be deployed!
33+
34+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
35+
36+
### `npm run eject`
37+
38+
**Note: this is a one-way operation. Once you `eject`, you can't go back!**
39+
40+
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.
41+
42+
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.
43+
44+
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.
45+
46+
## Learn More
47+
48+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
49+
50+
To learn React, check out the [React documentation](https://reactjs.org/).
51+
52+
### Code Splitting
53+
54+
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)
55+
56+
### Analyzing the Bundle Size
57+
58+
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)
59+
60+
### Making a Progressive Web App
61+
62+
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)
63+
64+
### Advanced Configuration
65+
66+
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)
67+
68+
### Deployment
69+
70+
This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
71+
72+
### `npm run build` fails to minify
73+
74+
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)

0 commit comments

Comments
 (0)