https://github.com/usermicrodevices/prod-flet
frontend for "prod" (warehouse system management based on Django). client developed in Flet (it is Python wraper arount Flutter)
https://github.com/usermicrodevices/prod-flet
android client django flet-dev flutter frontend http inventory ios linux macos manegement order register rest retail system warehouse windows
Last synced: about 2 months ago
JSON representation
frontend for "prod" (warehouse system management based on Django). client developed in Flet (it is Python wraper arount Flutter)
- Host: GitHub
- URL: https://github.com/usermicrodevices/prod-flet
- Owner: usermicrodevices
- License: mit
- Created: 2025-02-01T05:06:37.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-23T05:17:32.000Z (2 months ago)
- Last Synced: 2025-03-23T05:20:57.146Z (2 months ago)
- Topics: android, client, django, flet-dev, flutter, frontend, http, inventory, ios, linux, macos, manegement, order, register, rest, retail, system, warehouse, windows
- Language: Python
- Homepage: https://github.com/usermicrodevices/prod/
- Size: 201 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prod-flet
frontend for ["prod"](https://github.com/usermicrodevices/prod/) (warehouse system management based on [Django](https://github.com/django/django)). client developed in [Flet (it is Python wraper arount Flutter)](https://github.com/flet-dev/flet)[](https://github.com/usermicrodevices/prod/blob/main/LICENSE)

# installation
```
git clone [email protected]:usermicrodevices/prod-flet.git
cd prod-flet
python -m venv venv
. ./venv/bin/activate
pip install .
```# fix ubuntu run missing dependencies
```
sudo apt update
sudo apt install libmpv-dev libmpv2
sudo ln -s /usr/lib/x86_64-linux-gnu/libmpv.so /usr/lib/libmpv.so.1
```# running
```
flet run src/main.py
```# build android
```
flet build apk
```# build linux
```
flet build linux
```# build windows
```
flet build windows
```# pack as standalone executable file
```
pip install pyinstaller
flet pack --icon kassa.png --name prod-flet src/main.py
```# generate desktop and autostart files in linux Ubuntu for Gnome Desktop
```
sudo apt install gnome-startup-applications
./gen_desk.sh
```