22 lines
350 B
Markdown
22 lines
350 B
Markdown
# phomeme
|
|
|
|
A bluetooth client for Phomemo M110.
|
|
|
|
## Development
|
|
|
|
```sh
|
|
poetry run flask --app phomeme:app run --debug --host 0.0.0.0 --port 8000
|
|
```
|
|
|
|
## Production
|
|
|
|
```sh
|
|
poetry run gunicorn -w 1 'phomeme:app' -b [::0]
|
|
```
|
|
|
|
|
|
## Credits
|
|
|
|
Heavily based on [SFZ-aalen][1]
|
|
|
|
[1]: https://gitlab.com/sfz.aalen/infra/labelprinter/-/tree/main?ref_type=heads
|