-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 768 Bytes
/
Makefile
File metadata and controls
22 lines (16 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
install:
brew install inkscape || true
python3.12 -m venv .venv
. .venv/bin/activate && pip install -r requirements.txt
run:
. .venv/bin/activate && uvicorn inkscape_mcp_server:app --host 0.0.0.0 --port 5055 --reload
cli:
. .venv/bin/activate && python inkscape_cli.py static/sample.png --smoothness 0.6 --colors 4 --simplify true
refine:
. .venv/bin/activate && python iterative_refine.py --help
refine-test:
. .venv/bin/activate && python iterative_refine.py static/sample.png --output output/refined --name TestLogo --iterations 3
refine-small:
. .venv/bin/activate && python refine_small_sizes.py --help
refine-small-test:
. .venv/bin/activate && python refine_small_sizes.py static/sample.png --output output/refined --name TestLogo --iterations 5