Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielkhakbaz/the-film-inventory
a Inventory of a lot of animes from all across the globe.
https://github.com/danielkhakbaz/the-film-inventory
daisyui eslint framer-motion git husky next-auth nextjs prettier prisma react-intersection-observer tailwindcss typescript
Last synced: 3 days ago
JSON representation
a Inventory of a lot of animes from all across the globe.
- Host: GitHub
- URL: https://github.com/danielkhakbaz/the-film-inventory
- Owner: Danielkhakbaz
- Created: 2023-12-11T08:49:48.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-02T13:49:52.000Z (about 2 months ago)
- Last Synced: 2024-11-05T13:12:50.426Z (about 2 months ago)
- Topics: daisyui, eslint, framer-motion, git, husky, next-auth, nextjs, prettier, prisma, react-intersection-observer, tailwindcss, typescript
- Language: TypeScript
- Homepage: https://the-film-inventory.vercel.app
- Size: 1.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The Film Inventory
A comprehensive web application for managing and showcasing a collection of films, built with [Next.js](https://nextjs.org/). **The Film Inventory** allows users to explore film collections with user authentication, personalized recommendations, and seamless navigation, making it a valuable resource for movie enthusiasts and database administrators.
## Project Overview
This platform enables users to store, categorize, and search through an extensive film inventory. Designed with a clean UI and powered by a robust backend, it supports easy maintenance and scalability. The project also uses Prisma for database management, ensuring efficient and secure data handling.
## Table of Contents
- [Features](#features)
- [Technologies Used](#technologies-used)
- [Installation](#installation)
- [Development Scripts](#development-scripts)
- [Folder Structure](#folder-structure)## Features
- **Authentication**: Secure user login with session management using `next-auth` and Prisma.
- **Film Management**: Allows users to add, edit, and remove films in the inventory.
- **Categorization & Search**: Quickly find films by genre, release date, and other tags.
- **Responsive Design**: Optimized for desktop and mobile devices.
- **Interactive Animations**: Smooth and dynamic interactions with Framer Motion.## Technologies Used
- **[Next.js](https://nextjs.org/)** - React framework for server-side rendering and static site generation.
- **[React](https://reactjs.org/)** - JavaScript library for building user interfaces.
- **[Prisma](https://www.prisma.io/)** - ORM for database modeling and management.
- **[NextAuth.js](https://next-auth.js.org/)** - Authentication library for Next.js.
- **[Tailwind CSS](https://tailwindcss.com/)** - Utility-first CSS framework for designing modern web layouts.
- **[Framer Motion](https://www.framer.com/motion/)** - Animation library for React components.
- **[DaisyUI](https://daisyui.com/)** - Tailwind CSS-based component library for rapid UI development.## Folder Structure
Here's an overview of the project structure:
```plaintext
the-film-inventory/
├── public/ # Public assets like images and icons
│
├── prisma/ # Prisma schema and migration files
│
├── app/ # Source directory for components and pages
│
├── auth/ # Everything about authentication
│
├── components/ # Reusable UI components and shared widgets
│
├── layout/ # Layout components for structuring pages
│
├── providers/ # Context providers for managing global state and data
│
├── theme/ # Theme settings for design consistency (colors, typography, etc.)
│
├── utils/ # Utility functions
│
├── app/
│ ├── api/ # APIs written in JS for my full-stack next.js app
│ ├── about/ # About section (page for blog posts)
│ └── movies/ # Movies section (page for blog posts)
│
├── .eslintrc.json # ESLint configuration for code quality
├── .prettierrc # Prettier configuration for code formatting
├── next.config.js # Next.js configuration for app settings
├── package.json # Project metadata, scripts, and dependencies
└── README.md # Documentation for project setup and usage
```## Installation
To set up this project locally, follow these steps:
1. **Clone the repository**:
```bash
git clone https://github.com/Danielkhakbaz/The-Film-Inventory
cd danielo-portfolio2. **Install dependencies**:
```tsx
yarn3. **Run the development server**:
```tsx
yarn dev4. **Open http://localhost:3000 in your browser to see the project**.
## Development Scripts
Here are some helpful scripts to assist in the development and maintenance of this project:
```dev```: Runs the app in development mode.
```build```: Compiles the app for production.
```start```: Starts the production server.
```lint```: Lints and fixes files using ESLint.
```fix```: Formats files using Prettier.
```check-prettier```: Checks the code format without making changes.