Skip to content

Latest commit

 

History

History
65 lines (54 loc) · 1.57 KB

README.md

File metadata and controls

65 lines (54 loc) · 1.57 KB

Document Tracking Application

An application design to track document in an office/organisation.

Demo

document-tracking-app-demo.mov

app-screenshot-1 app-screenshot-2 app-screenshot-3 app-screenshot-4 app-screenshot-5

Running 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.

Technologies used

  1. Framework: Nextjs (tailwindcss, shadcnui, lucia)
  2. Database: Sqlite
  3. ORM: Prisma

Project Organisation

    ├── README.md
    ├── actions
    ├── app
    │   .
    │   .
    │   └── user
    │       ├── login
    │       └── register
    ├── components
    ├── components.json
    ├── jsconfig.json
    ├── lib
    │   ├── auth.js
    │   ├── luciaPrisma.js
    │   ├── prisma.js
    │   └── utils.js
    ├── next.config.mjs
    ├── node_modules
    ├── package.json
    ├── pnpm-lock.yaml
    ├── postcss.config.js
    ├── prisma
    │   .
    │   ├── migrations
    │   └── schema.prisma
    ├── providers
    │   └── sessionProvider.js
    ├── public
    └── tailwind.config.js