Skip to content

Latest commit

 

History

History
63 lines (38 loc) · 1.59 KB

INSTALL.md

File metadata and controls

63 lines (38 loc) · 1.59 KB

Running the Program with Rust

To run the program, follow these steps:

Step 1: Install Rust and Cargo

First, you need to install Rust and Cargo on your system. You can download the installer from the official Rust website: https://www.rust-lang.org/tools/install.

Step 2: Clone the Repository

Clone the repository using the following command:

git clone https://github.com/UsboKirishima/pwds.git

Step 3: Navigate to the Project Directory

Navigate to the project directory:

cd pwds

Step 4: Build and Run the Program

Build and run the program using the following command:

cargo run

This will compile the program and run it. You should see the graphical interface of the password manager.

Step 5: Run the Program with Debug Mode

To run the program in debug mode, use the following command:

cargo run --debug

This will enable debug logging and allow you to see more detailed information about the program's execution.

Step 6: Run the Program with Release Mode

To run the program in release mode, use the following command:

cargo run --release

This will optimize the program for performance and disable debug logging.

Troubleshooting

If you encounter any issues while running the program, you can try the following:

  • Check the console output for error messages.
  • Make sure you have the latest version of Rust and Cargo installed.
  • Try running the program in debug mode to see more detailed information about the error.

By following these steps, you should be able to run the password manager program successfully.