Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NicolasLopes7/redis-ui
⚡ redis client made with care and acessibility-first 🚀
https://github.com/NicolasLopes7/redis-ui
accesibility electron radix react redis redis-client stitches typescript
Last synced: 8 days ago
JSON representation
⚡ redis client made with care and acessibility-first 🚀
- Host: GitHub
- URL: https://github.com/NicolasLopes7/redis-ui
- Owner: NicolasLopes7
- License: mit
- Created: 2022-08-06T14:22:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-28T01:06:13.000Z (almost 2 years ago)
- Last Synced: 2024-08-01T21:58:36.095Z (4 months ago)
- Topics: accesibility, electron, radix, react, redis, redis-client, stitches, typescript
- Language: TypeScript
- Homepage:
- Size: 1.93 MB
- Stars: 19
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⚡ Redis UI
The first open-source project to create an awesome and accessible UI for Redis as a native desktop application. ✨🦄## 🚀 How to develop locally
### First steps
> **Warning**
>
> Make it sure you have `docker`, `docker-compose` and a package manager - such as yarn, npm or pnpm - installed on your computer.> **Note**
>
> Hover the items of the list below to get more detailed description- Clone this repo and install all dependencies:
```sh
> git clone https://github.com/NicolasLopes7/redis-ui/
> cd redis-ui
> # install the dependencies (yarn, npm i, pnpm i)
```
- Initialize the Redis through docker-compose.
```sh
> docker-compose up --build -d
```
- Run the seed script to populate Redis (Optional step):
```sh
> # run the script with you package manager
> pnpm redis:seed
```
- Run the project in DEV mode
```sh
> pnpm dev
```> **Note**
>
> If you want to build, just you can try one of these commands (according your package manager).
> `yarn build` or `npm run build` or `pnpm build`