You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Turborepo-powered monorepo containing the applications and services that make up the Tuturuuu ecosystem. For full documentation, visit docs.tuturuuu.com.
Our Vision
Tuturuuu is building the world's first intelligent, open-source operating system for modern work and life. We wage war on digital noise by creating a unified platform that automates administrative work and eliminates the friction of context-switching.
We believe we are entering the Third Era of technology: the Age of Partners - where AI acts as an intelligent partner to amplify human potential, not a cage for our attention.
# 1. Clone the repository
git clone https://github.com/tutur3u/platform.git
cd platform
# 2. Install dependencies
bun i
# 3. Start Supabase (requires Docker)
bun sb:start
# 4. Set up environment files# Copy .env.example to .env.local in each app directory# Add Supabase URLs and keys from the sb:start output# 5. Run the development server
bun dev
Optional local Redis
If you need a real Redis backend (e.g., to test rate limiting or Upstash clients) there is an optional stack under apps/redis. Run bun redis:start from the repo root to boot Redis + the Serverless Redis HTTP proxy and point UPSTASH_REDIS_REST_URL/UPSTASH_REDIS_REST_TOKEN at http://localhost:8079/example_token. The platform normally falls back to memory-only storage, so this step is only required when you want container-backed persistence.
Key Commands
Development
Command
Description
bun dev
Start all apps in development mode
bun dev:web
Start main web app only
bun devx
Start full stack with persisted database
bun devrs
Start full stack with clean, seeded database
Database
Command
Description
bun sb:start
Start local Supabase (Studio at :8003, InBucket at :8004)