Skip to main content

🛠️ Installation

Install the lazywarden

  • Clone the repository
    git clone https://github.com/querylab/lazywarden.git
cd lazywarden
  • Run the script to install all the dependencies and system requirements in this case I am using ubuntu as my operating system.
cd lazywarden/scripts
chmod +x setup-ubuntu-env.sh
./setup-ubuntu-env.sh
  • First, ensure you are in the root directory of the project lazywarden/:
cd .. 
source venv/bin/activate
  • Now Install Bitwarden CLI using the bitwarden-cli-install.py script, which will install all CLI dependencies:
python3 scripts/bitwarden-cli-install.py
  • Change the system timezone using the following command. Replace Region/City with the desired timezone (e.g., America/New_York):
timedatectl set-timezone America/New_York
  • Run the Lazywarden program. Navigate to the app/ folder and execute main.py:
cd app
python3 main.py
tip
  • If you encounter an error when running main.py, it may be related to missing or outdated libraries. To fix this, I recommend running the following command to install all the necessary dependencies:
 pip install -r requirements.txt