chore(make): add uv --active and specify port

This commit is contained in:
2026-04-12 11:11:05 +02:00
parent ac2f31576f
commit 416dc2673b
2 changed files with 13 additions and 8 deletions
+8 -4
View File
@@ -53,7 +53,9 @@ curl -X DELETE \
http://stapler-host/my-project/
```
## TODO
## Development
### TODO
- [x] basic http server
- [x] docker container
@@ -74,7 +76,7 @@ curl -X DELETE \
- [ ] log visits (and store accross sessions)
- [ ] deliver visits in /page/visits
## Makefile targets
### Makefile targets
```txt
Usage: make [target1] (target2) ...
@@ -94,8 +96,10 @@ start start server in localhost
Environment:
UV = uv
RUFF = uv run ruff
TY = uv run ty
RUFF = uv run --active ruff
TY = uv run --active ty
DOCKER = docker
DOCKER_TAG = localhost/stapler:latest
TOKEN = secret
PORT = 8080
```