Skip to content

Latest commit

 

History

History
34 lines (31 loc) · 758 Bytes

dev-environment-setup.md

File metadata and controls

34 lines (31 loc) · 758 Bytes

Development environment setup

Linux

The project uses just as a build system.

  1. Update all packages
    sudo apt update -y 
    sudo apt upgrade -y
  2. Install dependencies
    sudo apt install -y libmpv1 qttools5-dev-tools
  3. Clone the repository
    git clone <repository-git-url>
  4. Set up virtual environment and install dependencies
    python -m venv venv
    source venv/bin/activate
    python -m pip install --upgrade pip
    python -m pip install -r requirements.txt
  5. Build resources (compile data, i18n directories into a python file)
    just build-develop
  6. Start the application
    ./main.py