Skip to content

Feglawy/The_password_manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d718d79 Β· Oct 30, 2024
Oct 14, 2024
Oct 15, 2024
Oct 15, 2024
Oct 30, 2024
Aug 12, 2024
Sep 26, 2024
Oct 14, 2024
Sep 25, 2024
Oct 14, 2024
Oct 15, 2024
Aug 12, 2024
Oct 17, 2024
Sep 28, 2024
Sep 25, 2024
Sep 27, 2024
Sep 27, 2024

Repository files navigation

The Password Manager

Overview

The Password Manager is a secure and user-friendly application that allows users to store and manage their passwords efficiently. Built with modern web technologies, it ensures data security with SQLite3.

πŸš€ Features

  • Secure Storage: Passwords are stored securely using SQLite3.
  • User-Friendly Interface: Built with React for a responsive and intuitive user experience.
  • Environment Configuration: Easily configurable with environment variables.

Prerequisites

  • Node.js (version >= 20.x)
  • npm (Node Package Manager)

🚦 How to Configure and Build the Project

  1. Create a .env File: Store your SECRET_KEY in the .env file for secure access.

    SECRET_KEY=your_secret_key_here
    
  2. Install Dependencies: Run the following command to install all necessary packages.

    npm install
  3. Rebuild Native Dependencies: Make the project compatible with better-sqlite3.

    npm run rebuild
  4. Start the Development: Launch the application in development mode.

    npm run dev
  5. Build the App: Builds the for your os (win, mac, linux)

    npm run build:Your-OS

πŸ—οΈ Project Structure

The_password_manager/
β”œβ”€β”€ electron/                      # Directory containing Electron-related files
β”‚   β”œβ”€β”€ db/                        # Directory for database management
β”‚   β”‚   β”œβ”€β”€ Managers/                   # Directory for database manager classes
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountManager.ts       # Handles account-related database operations
β”‚   β”‚   β”‚   β”œβ”€β”€ WebsiteManager.ts       # Manages website-related data in the database
β”‚   β”‚   β”‚   └── SignedInByManager.ts    # Manages signed-in user sessions and related data
β”‚   β”‚   β”œβ”€β”€ config.ts              # Configuration settings for the database connection
β”‚   β”‚   β”œβ”€β”€ csvManager.ts          # Utility for importing/exporting data in CSV format
β”‚   β”‚   β”œβ”€β”€ DBConnection.ts        # Establishes and manages the database connection
β”‚   β”‚   β”œβ”€β”€ schema.ts              # Project's database schema definitions
β”‚   β”‚   β”œβ”€β”€ types.ts               # Database type definitions for TypeScript usage
β”‚   β”‚   └── utils.ts               # Utility functions for database operations
β”‚   β”œβ”€β”€ electron-env.d.ts          # Type definitions for Electron environment
β”‚   β”œβ”€β”€ main.ts                    # Main Electron entry point; initializes the application
β”‚   β”œβ”€β”€ preload.ts                 # Preloads scripts for the renderer process; secures context
β”‚   └── utils.ts                   # General utility functions for the Electron app
β”œβ”€β”€ public/                        # Public directory for static assets
β”‚   β”œβ”€β”€ font/                      # Directory for custom fonts
β”‚   └── icons                      # All other public icons
β”œβ”€β”€ src/                           # Directory for React frontend components
β”‚   β”œβ”€β”€ assets/                    # Directory for static assets used in the React app
β”‚   β”œβ”€β”€ components/                # Reusable React components
β”‚   β”œβ”€β”€ context/                   # Context API providers for state management
β”‚   β”œβ”€β”€ style/                     # Stylesheets (CSS) for the React app
β”‚   β”œβ”€β”€ app.tsx                    # Main application component; entry point for React
β”‚   β”œβ”€β”€ main.tsx                   # React rendering
β”‚   └── utils.tsx                  # Utility functions for the React app
└── .env                           # Environment variables for the application

πŸ“ License

This project is open source and available under the AGPL-3.0 License.

⭐️ Show your support

If this project helped you, please consider giving it a ⭐️!