https://github.com/kei-k23/bit-book
This is book management CRUD project for code test.
https://github.com/kei-k23/bit-book
nextjs postgresql typescript
Last synced: 2 months ago
JSON representation
This is book management CRUD project for code test.
- Host: GitHub
- URL: https://github.com/kei-k23/bit-book
- Owner: Kei-K23
- Created: 2024-01-05T16:01:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-05T16:13:46.000Z (over 2 years ago)
- Last Synced: 2025-10-30T07:02:33.021Z (8 months ago)
- Topics: nextjs, postgresql, typescript
- Language: TypeScript
- Homepage: https://bit-book.vercel.app
- Size: 1.48 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BIT-Book
## Overview
Books management CRUD project.
Visit live host Website (BIT-Book)[https://bit-book.vercel.app/]
## Tech Stack
- **Next.js 14** (Use app router and server action for data mutation)
- **Postgresql** (Database)
- **Tailwind + ShadcnUI** (UI Component)
## Features
1. **New Book Creation Form**: Users can create new books, including image uploading to cloud.
2. **Book Edit and Delete Form**: Users can edit and delete existing books.
3. **Book Listing Page**: Display existing books in a DataTable format that can sort, filter.
4. **Book List JSON API**
- URL for API endpoint with book list JSON `/api/books`.
## Setup and Installation for locally
Firstly, install dependencies and setup env file like `.env.example`
```bash
npm install
```
Second, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```