Workshop manager (WM) is an open source software for repair businesses.
With WM you can:
- efficiently manage your jobs, invoices, and quotes
- keep vehicles history in cloud
- being ables to access your records anywhere and anytime
- monitor performance of you workshop and every employee
Create a folder for project:
mkdir WM
cd WM
Setup virtual environment with Python ver 3.7 and activete it:
virtualenv -p python3 venv
source venv/bin/activate
Fork & clone repository:
git clone <your-github-repo-url>/workshop-manager/
Install dependencies:
cd wm-django
pip install requirements.txt
Make migrations:
python manage.py migrate
Run server:
python manage.py runserver
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.