https://github.com/labwhatever/whatever-ui
whatever.codes
https://github.com/labwhatever/whatever-ui
Last synced: 9 months ago
JSON representation
whatever.codes
- Host: GitHub
- URL: https://github.com/labwhatever/whatever-ui
- Owner: labwhatever
- Created: 2025-05-14T06:24:14.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-16T19:57:44.000Z (about 1 year ago)
- Last Synced: 2025-08-09T14:41:59.239Z (10 months ago)
- Language: TypeScript
- Homepage: https://whatever.codes
- Size: 492 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ๐ ๏ธ Project Setup Guide (Using Bun)
This project uses [Turborepo](https://turbo.build/repo) with [Bun](https://bun.sh/) as the package manager.
### ๐ Prerequisites
Make sure you have the following installed:
* [Bun](https://bun.sh/) โ Install it using:
```sh
curl -fsSL https://bun.sh/install | bash
```
* Node.js (if required for tooling)
* Git
---
### ๐ฆ Install Dependencies
Clone the repo and install dependencies for all apps and packages:
```sh
git clone https://github.com/whateverui/whatever-ui
cd whatever-ui
bun install
```
---
### ๐งช Development
To run all apps/packages in development mode:
```sh
bun run dev
```
---
### ๐จ Build
To build all apps and packages:
```sh
bun run build
```
---
### ๐ฆ Remote Caching (Optional)
To enable Vercel Remote Caching for faster CI and team collaboration:
1. Log in to Vercel:
```sh
bunx turbo login
```
2. Link your Turborepo to your Vercel project:
```sh
bunx turbo link
```
> Remote Caching is free and improves build times across machines.
---
### ๐งญ Useful Commands
| Command | Description |
| ------------------ | -------------------------------- |
| `bun install` | Install dependencies |
| `bun run dev` | Run dev servers for all apps |
| `bun run build` | Build all apps/packages |
| `bunx run login` | Authenticate with Vercel |
| `bunx run link` | Link repo to Vercel Remote Cache |