Skip to content

Commit 7213e3d

Browse files
committed
react 19 and mui v7
1 parent 4113505 commit 7213e3d

138 files changed

Lines changed: 10237 additions & 9645 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.

.env

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
VITE_APP_VERSION = v3.0.0
2-
GENERATE_SOURCEMAP = false
3-
4-
PUBLIC_URL = https://codedthemes.com/demos/admin-templates/materially/react/free
5-
VITE_APP_BASE_NAME = demos/admin-templates/materially/react/free
1+
VITE_APP_VERSION = v4.0.0
2+
GENERATE_SOURCEMAP = false
3+
4+
PUBLIC_URL= https://codedthemes.com/demos/admin-templates/materially/react/free
5+
VITE_APP_BASE_URL= /demos/admin-templates/materially/react/free
6+
7+
8+

.env.qa

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
REACT_APP_VERSION = v3.0.0
2-
GENERATE_SOURCEMAP = false
3-
PUBLIC_URL = https://codedthemes.com/demos/admin-templates/materially/react/free/stage
4-
VITE_APP_BASE_NAME = demos/admin-templates/materially/react/free/stage
1+
VITE_APP_VERSION=v4.0.0
2+
GENERATE_SOURCEMAP=false
3+
4+
PUBLIC_URL = https://codedthemes.com/demos/admin-templates/materially/react/free/stage
5+
VITE_APP_BASE_URL=/demos/admin-templates/materially/react/free/stage
6+
7+
## Backend API URL
8+
VITE_APP_API_URL=https://mock-data-api-nextjs.vercel.app/

.eslintrc

Lines changed: 0 additions & 90 deletions
This file was deleted.

.github/workflows/prod.yml

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,41 @@
1-
name: Node - SSH deploy
2-
3-
# Controls when the action will run.
4-
on:
5-
# Triggers the workflow on push or pull request events but only for the master branch
6-
push:
7-
branches:
8-
- main
9-
10-
jobs:
11-
SFTP-deploy:
12-
name: 🎉 Deploy
13-
runs-on: ubuntu-latest
14-
15-
steps:
16-
- name: 🚚 Get latest code
17-
uses: actions/checkout@v4
18-
19-
- name: Use Node.js 20
20-
uses: actions/setup-node@v4
21-
with:
22-
node-version: '20.x'
23-
24-
- name: 🔨 Build Project
25-
run: |
26-
yarn
27-
yarn build
28-
29-
- name: 📂 Deploy to Server
30-
uses: easingthemes/ssh-deploy@main
31-
env:
32-
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
33-
# ARGS: "-rltgoDzvO --delete"
34-
SOURCE: 'dist/'
35-
REMOTE_HOST: 154.49.240.71
36-
REMOTE_USER: u778408432
37-
REMOTE_PORT: '65002'
38-
TARGET: domains/codedthemes.com/public_html/demos/admin-templates/materially/react/free
39-
EXCLUDE: '/dist/, /node_modules/'
1+
name: Node - SSH deploy
2+
3+
# Controls when the action will run.
4+
on:
5+
# Triggers the workflow on push or pull request events but only for the master branch
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
SFTP-deploy:
12+
name: 🎉 Deploy
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: 🚚 Get latest code
17+
uses: actions/checkout@v4
18+
19+
- name: Use Node.js 22
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22'
23+
24+
- name: 🔨 Build Project
25+
run: |
26+
corepack enable
27+
yarn set version 4.9.1
28+
yarn
29+
yarn build-stage
30+
31+
- name: 📂 Deploy to Server
32+
uses: easingthemes/ssh-deploy@main
33+
env:
34+
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
35+
# ARGS: "-rltgoDzvO --delete"
36+
SOURCE: 'dist/'
37+
REMOTE_HOST: 91.108.116.107
38+
REMOTE_USER: u106957989
39+
REMOTE_PORT: '65002'
40+
TARGET: domains/codedthemes.com/public_html/demos/admin-templates/materially/react/free
41+
EXCLUDE: '/dist/, /node_modules/'

.github/workflows/stage.yml

Lines changed: 41 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,41 @@
1-
name: Node - SSH deploy
2-
3-
# Controls when the action will run.
4-
on:
5-
# Triggers the workflow on push or pull request events but only for the master branch
6-
push:
7-
branches:
8-
- stage*
9-
10-
jobs:
11-
SFTP-deploy:
12-
name: 🎉 Deploy
13-
runs-on: ubuntu-latest
14-
15-
steps:
16-
- name: 🚚 Get latest code
17-
uses: actions/checkout@v4
18-
19-
- name: Use Node.js 20
20-
uses: actions/setup-node@v4
21-
with:
22-
node-version: '20.x'
23-
24-
- name: 🔨 Build Project
25-
run: |
26-
yarn
27-
yarn build-stage
28-
29-
- name: 📂 Deploy to Server
30-
uses: easingthemes/ssh-deploy@main
31-
env:
32-
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
33-
# ARGS: "-rltgoDzvO --delete"
34-
SOURCE: 'dist/'
35-
REMOTE_HOST: 154.49.240.71
36-
REMOTE_USER: u778408432
37-
REMOTE_PORT: '65002'
38-
TARGET: domains/codedthemes.com/public_html/demos/admin-templates/materially/react/free/stage
39-
EXCLUDE: '/dist/, /node_modules/'
1+
name: Node - SSH deploy
2+
3+
# Controls when the action will run.
4+
on:
5+
# Triggers the workflow on push or pull request events but only for the master branch
6+
push:
7+
branches:
8+
- stage*
9+
10+
jobs:
11+
SFTP-deploy:
12+
name: 🎉 Deploy
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: 🚚 Get latest code
17+
uses: actions/checkout@v4
18+
19+
- name: Use Node.js 22
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22'
23+
24+
- name: 🔨 Build Project
25+
run: |
26+
corepack enable
27+
yarn set version 4.9.1
28+
yarn
29+
yarn build-stage
30+
31+
- name: 📂 Deploy to Server
32+
uses: easingthemes/ssh-deploy@main
33+
env:
34+
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
35+
# ARGS: "-rltgoDzvO --delete"
36+
SOURCE: 'dist/'
37+
REMOTE_HOST: 91.108.116.107
38+
REMOTE_USER: u106957989
39+
REMOTE_PORT: '65002'
40+
TARGET: domains/codedthemes.com/public_html/demos/admin-templates/materially/react/free/stage
41+
EXCLUDE: '/dist/, /node_modules/'

.gitignore

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
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-
/dist
14-
15-
# misc
16-
.DS_Store
17-
.env.local
18-
.env.development.local
19-
.env.test.local
20-
.env.production.local
21-
22-
npm-debug.log*
23-
yarn-debug.log*
24-
yarn-error.log*
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
.yarn
10+
11+
node_modules
12+
dist
13+
dist-ssr
14+
*.local
15+
16+
# Editor directories and files
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?

.prettierrc

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
{
2-
"bracketSpacing": true,
3-
"printWidth": 140,
4-
"singleQuote": true,
5-
"trailingComma": "none",
6-
"tabWidth": 2,
7-
"useTabs": false,
8-
"endOfLine": "auto"
9-
}
1+
{
2+
"bracketSpacing": true,
3+
"printWidth": 140,
4+
"singleQuote": true,
5+
"trailingComma": "none",
6+
"tabWidth": 2,
7+
"useTabs": false
8+
}

.yarn/install-state.gz

-755 KB
Binary file not shown.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodeLinker: node-modules
1+
nodeLinker: node-modules

LICENSE

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
MIT License
2-
3-
Copyright (c) 2025 CodedThemes
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
MIT License
2+
3+
Copyright (c) 2025 CodedThemes
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)