Zotari is a file storage solution that leverages Discord webhooks to store files of any size by splitting them into manageable chunks. This approach provides essentially unlimited storage using Discord's infrastructure at no cost.
- Unlimited Storage: Store files of any size through automatic chunking
- Discord Integration: Uses Discord webhooks as a storage backend
- Multi-File Upload: Upload multiple files simultaneously with progress tracking
- File Management: Organize, rename, and delete your uploaded files
- Webhook Management: Add multiple webhooks for redundancy and faster uploads
- User Authentication: Secure access to your files with NextAuth.js
- Modern UI: Clean, responsive interface built with Tailwind CSS and Shadcn UI
- Files are split into 9MB chunks (Discord's attachment limit)
- Each chunk is uploaded to Discord through webhooks
- Metadata and chunk URLs are stored in your database
- When downloading, chunks are reassembled in the correct order
- Node.js 18+ or Bun
- PostgreSQL database (or any database supported by Prisma)
- Discord server with webhook creation permissions
- Clone the repository:
git clone https://github.com/yourusername/zotari.git
cd zotari
- Install dependencies:
npm install
# or
yarn install
# or
pnpm install
# or
bun install
- Configure environment variables:
Create a .env
file in the root directory with the following:
# Database
# default database is sqlite, change in schema.prisma if you want to use a different database
DATABASE_URL="postgresql://username:password@localhost:5432/zotari"
# Authentication
AUTH_SECRET="=" # Added by `npx auth`. Read more: https://cli.authjs.dev
# Discord Stuff
AUTH_DISCORD_ID=""
AUTH_DISCORD_SECRET=""
# user token not bot token, get it from devtools
DISCORD_TOKEN=""
- Set up the database:
npx prisma migrate dev
- Start the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the application.
- Open Discord and navigate to your server
- Right-click on a channel and select "Edit Channel"
- Go to "Integrations" > "Webhooks"
- Click "New Webhook" and customize as desired
- Copy the webhook URL
- In Zotari, go to the Webhooks page and add the URL
The simplest way to deploy Zotari is using Vercel:
- Push your code to a GitHub repository
- Visit Vercel and import your repository
- Configure the environment variables as listed above
- Deploy!
For other platforms:
- Build the application:
npm run build
- Start the production server:
npm start
- Configure your server to serve the application on your desired domain
- Make sure to set up proper environment variables
- Frontend: Next.js App Router with React
- Backend: Next.js Server Actions
- Database: Prisma ORM with PostgreSQL
- Authentication: NextAuth.js
- UI: Tailwind CSS with Shadcn UI components
- File Processing: Web Workers for non-blocking chunking
/app
- Next.js App Router pages and layouts/components
- UI components and feature implementations/lib
- Utility functions and shared code- prisma - Database schema and client
- public - Static assets
/hooks
- Custom React hooks, including the file uploader/workers
- Web Worker implementations for file processing
The default chunk size is 9MB (Discord's maximum attachment size). To change this:
- Modify the
useDiscordUploader
hook'suploadFile
function - Update the
chunkSize
parameter (not recommended to exceed 8MB for reliability)
This project is licensed under the MIT License - see the LICENSE file for details.