Ride-my App is a carpooling application that provides drivers with the ability to create ride offers and passengers to join available ride offers.
- The api is hosted on heroku https://ruga.herokuapp.com/api/v1/rides/
- Get all ride offers
- Get a specific ride offer
- Create a ride offer
- Make a request to join a ride.
- clone the repo $ git clone https://github.com/ruganda/Ride-My-Way.git
- $ cd into the project directory
- set up a virtual environment $ virtualenv venv
- Activate the virtual environment
- Install project dependencies $ pip install -r requirements.txt
- To run the project $ python run.py
- Open postman and navigate to http://127.0.0.1:5000/api/v1/rides/
- Python Language
- Flask framework
- To run tests $ nosetests
- To run tests with coverage $ nosetests --with-coverage --cover-erase --cover-package=app/ && coverage report
- Andela bootcamp challenge 2.