Skip to content

Emmycodez/QuiqPass-exit-pass-software

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

71 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

QuiqPass - Exit Pass Management Software

🌍 Live Demo | πŸ“„ Documentation | πŸ› Report Issues

A modern, full-stack exit pass management system built with React-Routerv7 for efficient management of exit passes in private universities🏫.

πŸ’‘ Motivation

As a student in a private university, I often had to walk long distances just to get my exit pass approved, even when i was sick πŸ€’. This process was time-consuming, frustrating, and inefficient.

QuiqPass was born out of that experience β€” a digital solution to streamline exit pass requests, reduce paperwork, and make the process faster and more transparent for both students and administrators.

πŸ“Έ Screenshots

Hero Section

Hero Section

Onboarding Form

Onboarding Form

Register Page

Register Page

πŸ‘‰ Try it live: QuiqPass Demo

🌟 Features

  • Digital Pass Generation: Student can apply for short and long passes from the student-dashboard
  • Real-time Tracking: Monitor entry and exit activities in real-time.
  • Student Management: Comprehensive admin panel for managing students and permissions
  • Responsive Design: Modern, mobile-friendly interface built with TailwindCSS
  • Secure Authentication: Robust user authentication and authorization system
  • Reporting & Analytics: Generate detailed reports on pass usage and visitor statistics
  • QR Code Integration: Quick scanning capabilities for seamless entry/exit process

πŸš€ Tech Stack

  • Frontend/Backend: React-routerV7, TypeScript
  • Styling: TailwindCSS, ShadcnUI
  • DB & AUTH: Supabase
  • Build Tool: Vite with HMR (Hot Module Replacement)
  • Server: Node.js with server-side rendering
  • Package Manager: npm/pnpm/bun support

πŸ“‹ Prerequisites

Before you begin, ensure you have the following installed:

  • Node.js (version 16 or higher)
  • npm, pnpm, or bun package manager

πŸ› οΈ Installation

  1. Clone the repository

    git clone https://github.com/Emmycodez/QuiqPass-exit-pass-software.git
    cd QuiqPass-exit-pass-software
  2. Install dependencies

    npm install
    # or
    pnpm install
    # or
    bun install
  3. Start the development server

    npm run dev
    # or
    pnpm dev
    # or
    bun dev
  4. Open your browser Navigate to http://localhost:5173 to view the application

πŸ—οΈ Build & Deployment

Development Build

npm run build

Docker Deployment

The project includes optimized Dockerfiles for different package managers:

Using npm:

docker build -t quiqpass .
docker run -p 3000:3000 quiqpass

Using pnpm:

docker build -f Dockerfile.pnpm -t quiqpass .
docker run -p 3000:3000 quiqpass

Using bun:

docker build -f Dockerfile.bun -t quiqpass .
docker run -p 3000:3000 quiqpass

Cloud Deployment

This project can be easily deployed on vercel https://vercel.com/

The containerized application can be deployed to:

  • AWS ECS
  • Google Cloud Run
  • Azure Container Apps
  • Digital Ocean App Platform
  • Fly.io
  • Railway
  • Vercel
  • Netlify

πŸ“ Project Structure

QuiqPass/
β”œβ”€β”€ package.json
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ build/
β”‚   β”œβ”€β”€ client/          # Static assets
β”‚   └── server/          # Server-side code
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ components/      # Reusable UI components
β”‚   β”œβ”€β”€ pages/          # Application pages
β”‚   β”œβ”€β”€ hooks/          # Custom React hooks
β”‚   β”œβ”€β”€ utils/          # Utility functions
β”‚   β”œβ”€β”€ styles/         # CSS and styling files
β”‚   └── types/          # TypeScript type definitions
β”œβ”€β”€ public/             # Public assets
β”œβ”€β”€ Dockerfile*         # Docker configurations
└── README.md

🎯 Usage

Student Onboarding

  • Students can register on the platform
  • Fill in their information in the onboarding form
  • Apply for either a long or short pass

Hostel Porter Panel

  • Hostel porters receive notifications when a student from their hostel applies for a pass
  • Forward pass applications to the CSO or reject pass applications.

Admin Panel

  • Access the admin dashboard to manage student and system settings
  • View Student Pass application information
  • Approve or Reject Passes
  • View Analytics and Data on student movement through out the school
  • Monitor real-time entry/exit activities
  • Generate comprehensive reports

Pass Verification

  • Scan QR codes at entry/exit points
  • Verify pass validity and user details
  • Log entry/exit activities automatically

πŸ”§ Configuration

Create a .env file in the root directory with your configuration:

# Supabase Configuration
VITE_SUPABASE_URL=your_vite_auth_url
VITE_SUPABASE_ANON_KEY= your_supabase_anon_key
VITE_BASE_URL = your_application_base_url: likely `http://localhost:5173` or url_in_production

# Application Settings
PORT=3000
NODE_ENV=production

🀝 Contributing

We welcome contributions! Please follow these steps:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Coding Standards

  • Follow TypeScript best practices
  • Use meaningful variable and function names
  • Write clean, documented code
  • Ensure all tests pass before submitting

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ‘¨β€πŸ’» Author

Emmanuel - @Emmycodez

I’m a Software Engineering student passionate about solving real problems with technology.
QuiqPass was inspired by my own challenges as a student navigating outdated exit pass systems, and reflects my interest in learning new technologies and building scalable, user-focused software.

πŸ†˜ Support

If you encounter any issues or have questions:

  1. Check the Issues section
  2. Create a new issue with detailed information
  3. Contact the maintainer directly

πŸ™ Acknowledgments

  • Built with React Routerv7 for robust routing capabilities
  • Styled with TailwindCSS and ShadcnUI for modern, responsive design
  • Database and Auth using Supabase
  • Deployed on Vercel
  • Thanks to all contributors who help improve this project

⭐ If you find this project helpful, please consider giving it a star on GitHub!

About

QuiqPass is an exit pass application system built with modern technologies to digitize the application and approval process for exit passes in wellspring university. It is built using RRV7, Typescript, Tailwind and Supabase

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages