The aim of this project is to provide a simple webapp that provides users with the ability to register and provide roadside assistance services
This project is built with the web framework Django. Here's steps to get it running.
- Install Python 3
- Install django version 2.1.5 using pip
pip3 install django==2.1.5- Clone this repository into a directory and enter it
git clone git@github.com:wizzledonker/ezyassist.git
cd ezyassist- Use python to make migrations (create necessary databases) and import the default plans into the database (default plans are located in assist/fixtures/pricingmodels.json)
python manage.py makemigrations
python manage.py makemigrations assist
python manage.py migrate
python manage.py loaddata pricingmodels- Run the server
python manage.py runserver- Go to a browser and visit
localhost:8000/assistto view the website.