Skip to content

surajshivkumar/Used-car-price

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

85 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AutoWise: The Intelligent Used Car Marketplace

Description: AutoWise is a cutting-edge used car marketplace that combines the power of machine learning with your car buying and selling needs. Experience a smarter and more efficient way to browse, buy, or sell used cars with our intelligent platform. AutoWise doesn't just connect car enthusiasts; it analyzes data to provide precise price predictions and offers personalized recommendations, ensuring you find the perfect vehicle. Welcome to the future of used car shopping with AutoWise !!

Installation

in order to set up this project and install its dependencies, follow these steps:

  1. Clone the Repository:

    git clone https://github.com/yourusername/yourproject.git
    cd yourproject
  2. Create a Virtual Environment (Optional but Recommended):

It's recommended to create a virtual environment to isolate the project's dependencies.

python -m venv venv
source venv/bin/activate  # On Windows, use 'venv\Scripts\activate'

Install Dependencies:

Use pip to install the required packages listed in requirements.txt.

pip install -r requirements.txt

Dependencies

Listed are the dependencies needed.

Configuration Settings

Below are the configuration settings used in this project. You can modify these settings to match your environment and project requirements.

  • You will have to make these changes in the app.conf file.

Move into the schema folder.

cd ./app/schema

Then open app.conf in an editor and make the following changes.

[DEFAULT]
dbname = used_cars

[sql-prod]
bi_db = used_cars
host = localhost
user = your-user-name
dbname = used_cars
password = your-password

Database Schema Setup

Before setting up the database schema for this project, ensure that you have PostgreSQL version 16 or later installed on your system. If you haven't already installed PostgreSQL, you can download and install it from the official PostgreSQL website: Download PostgreSQL.

Once you have PostgreSQL installed, follow these steps: To set up the database schema for this project, follow these steps:

  1. Create the Database:

    First, create the database where the project's tables will be stored. You can do this using a SQL client or a command-line interface for your database system. Here's an example using PostgreSQL:

    CREATE DATABASE used_cars;
  2. Create Tables: Run the SQL script tables.sql to create the necessary tables. You can use a SQL client or a command-line tool to execute the script. Here's an example using the PostgreSQL command-line tool:

psql -d used_cars -U your_username -a -f tables.sql

Make sure to replace your_username with your database username and provide any necessary authentication details.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published