Dropify is a modern file management application built using Next.js, TypeScript, and Tailwind CSS. It provides features like file upload, folder creation, trash management, and user authentication.
- File Management: Upload, delete, star, and move files to trash.
- Folder Management: Create and navigate folders.
- Authentication: Sign-in and sign-up functionality using Clerk.
- Database Integration: Powered by Drizzle ORM and Neon serverless database.
- Responsive Design: Styled with Tailwind CSS.
-
Clone the repository:
git clone https://github.com/yourusername/dropify.git
-
Navigate to the project directory:
cd dropify
-
Install dependencies:
npm install
npm run dev
: Start the development server.npm run build
: Build the application for production.npm run start
: Start the production server.npm run lint
: Run linting checks.npm run db:push
: Push database schema changes.npm run db:studio
: Open Drizzle Studio.npm run db:generate
: Generate database schema.npm run db:migrate
: Run database migrations.
- Next.js: React framework for building web applications.
- TypeScript: Strongly typed programming language.
- Tailwind CSS: Utility-first CSS framework.
- Drizzle ORM: TypeScript ORM for SQL databases.
- Neon: Serverless PostgreSQL database.
- Clerk: Authentication and user management.
app/
: Contains Next.js pages and API routes.components/
: Reusable React components.lib/
: Utility functions and database-related code.public/
: Static assets like images.schemas/
: Validation schemas using Zod.
This project is licensed under the MIT License.
This is a Next.js project bootstrapped with create-next-app
.
First, run 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 result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.