Skip to content

Commit

Permalink
Added Remix (#65)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Milan Bhikadiya <[email protected]>
  • Loading branch information
3 people authored Apr 11, 2023
1 parent 1fa10ae commit 8f5ba26
Show file tree
Hide file tree
Showing 221 changed files with 63,852 additions and 9,927 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ jobs:
- name: 🚚 Get latest code
uses: actions/checkout@v2

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v2-beta
with:
node-version: '16'
node-version: '18'

- name: 🔨 Build Project
run: |
cd create-react-app
yarn
yarn build
Expand All @@ -37,8 +38,8 @@ jobs:
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
# ARGS: "-rltgoDzvO --delete"
SOURCE: 'build/'
SOURCE: 'create-react-app/build/'
REMOTE_HOST: 192.34.62.123
REMOTE_USER: berry
TARGET: public_html/free
EXCLUDE: '/dist/, /node_modules/'
EXCLUDE: '/create-react-app/dist/, /create-react-app/node_modules/'
File renamed without changes.
File renamed without changes.
File renamed without changes.
74 changes: 74 additions & 0 deletions create-react-app/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# 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 install`

Install packages

### `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)
File renamed without changes.
Loading

0 comments on commit 8f5ba26

Please sign in to comment.