Spaces:
Running
Running
File size: 182 Bytes
6a0e448 |
1 2 3 4 5 6 7 8 9 10 11 12 |
.PHONY: proxy
proxy:
pip install uv
uv venv --python 3.11 --python-preference managed
uv sync
uv pip install -e .
playwright install
app:
streamlit run src/proxy_lite/app.py
|