Skip to content

hackcu12-snapsell/SnapSell

Repository files navigation

SnapSell

Development setup

Python (backend)

  1. Create and activate the virtual environment (already created at .venv):

    # From SnapSell/
    python3 -m venv .venv
    source .venv/bin/activate   # macOS/Linux
    # or:  .venv\Scripts\activate   # Windows
  2. Install dependencies:

    pip install -r backend/requirements.txt
  3. Run the backend from the SnapSell directory with the venv activated.