Initial commit: Masina-Dock Vehicle Management System

This commit is contained in:
Iulian 2025-10-19 11:10:11 +01:00
commit ae923e2c41
4999 changed files with 1607266 additions and 0 deletions

11
deb-build/DEBIAN/control Normal file
View file

@ -0,0 +1,11 @@
Package: masina-dock
Version: 1.0.0
Section: utils
Priority: optional
Architecture: amd64
Maintainer: Masina-Dock Developer <dev@masina-dock.local>
Description: Vehicle Maintenance Records and Fuel Mileage Tracker
A comprehensive vehicle maintenance and fuel economy tracking application.
Features include service record management, fuel economy tracking, maintenance
reminders, and expense analytics with support for multiple vehicles.
Depends: python3 (>= 3.9), python3-pip

6
deb-build/DEBIAN/postinst Executable file
View file

@ -0,0 +1,6 @@
#!/bin/bash
cd /opt/masina-dock
pip3 install -r backend/requirements.txt --target=/opt/masina-dock/pylibs
chmod +x /usr/bin/masina-dock
echo "Masina-Dock installed successfully!"
echo "Run 'masina-dock' to start the application"