A simple cars API with functionality for adding cars, rating them and reviewing their popularity
- Built using Python 3.8 and Django 3.1 framework
- Works with PostgreSQL
Setting up an application:
- After cloning the repository, install dependencies using pip install -r requirements.txt.
- Configure your DB connection in cars_api/settings.py.
- Run 'python manage.py migrate' command to create DB tables.
- Your app can now be started using 'python manage.py runserver' command.
- Access the app by going to http://127.0.0.1:8000 or http://localhost:8000
For setting up Docker container, from the app root foler, run 'docker-compose up' command