Files
wizarr/docs/contribute/development.md
2023-02-07 16:08:08 +00:00

542 B

Development

If you want to contribute to Wizarr, here is how

Prerequisites

  • Python3.11+

Development Environment

  1. Clone the repository with git clone git@github.com:Wizarrrr/wizarr.git
  2. Move into the directory cd wizarr
  3. (Optional but recommended) Create a python virtual environment with python -m venv venv
  4. Enter the python venv with source venv/bin/activate
  5. Install dependencies with pip install -r requirements.txt
  6. Start Wizarr with flask run
  7. Wizarr is now accessible at http://127.0.0.1:5000