- This project has been forked from: https://github.com/devias-io/material-kit-react
- Made for an IBA university event
-
Clone from repo:
git clone https://github.com/Hammad1029/IBAES.git
-
Make sure your Node.js and npm versions are up to date for
React 18
-
Install dependencies:
npm install
oryarn
-
Start the server:
npm run dev
oryarn dev
-
Views are on:
localhost:3000
Make .env.local
file and add:
JWT_KEY=##### JWT_EXPIRY=#####
## File Structure
Within the download you'll find the following directories and files:
```
material-kit-react
┌── .env.example
├── .eslintrc.json
├── .gitignore
├── CHANGELOG.md
├── LICENSE.md
├── next.config.js
├── package.json
├── README.md
├── public
└── src
├── __mocks__
├── components
├── icons
├── lib
├── theme
├── utils
└── pages
├── 404.js
├── _app.js
├── _document.js
├── account.js
├── customers.js
├── index.js
├── index.js
├── products.js
├── register.js
└── settings.js
└── sign-in
├── confirm.js
└── index.js
```