https://github.com/fdemir/market
https://github.com/fdemir/market
react redux redux-toolkit redux-toolkit-query styled-components typescript
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fdemir/market
- Owner: fdemir
- Created: 2022-09-29T03:26:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-03T15:42:17.000Z (over 2 years ago)
- Last Synced: 2025-04-24T03:43:58.817Z (2 months ago)
- Topics: react, redux, redux-toolkit, redux-toolkit-query, styled-components, typescript
- Language: TypeScript
- Homepage: https://plankton-app-5vszu.ondigitalocean.app
- Size: 464 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Market
## Technologies
- React.JS
- Vite
- Styled Components
- Redux Toolkit
- RTK Query
- Eslint + Prettier
- Cypress## Installation
- Clone this repo.
- Run `yarn install` to install dependencies.
- Run `yarn dev` to start the development server.## Production
- Run `yarn build` to build the project.
- Run `yarn start` to start the production server.## Tests
- Run `yarn test` to run the tests.
## Theming
You can change the theme by changing the `theme` variable in `src/theme/variables.ts`.
## Folder Structure
```
src/
├─ components
│ ├─ layout - layout related components
│ ├─ lib - reusable components
│ ├─ shared - shared components
├─ utils - utility functions
├─ mock - contains mock data
├─ theme - theme config files and global styles
├─ assets - images and icons etc.
```