Skip to content

This application allow customers to submit service requests online. Which includes the ability to select the type of service request, provide details about the request, and attach files. And it also provides an interface to track the requests of customer.

Notifications You must be signed in to change notification settings

rahul4507/Bynry_Gas_Utility_Service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prerequisites

  • Python 3.8 or higher
  • Django 3.2 or higher
  • PostgreSQL 12 or higher

Setup

  1. Clone the repository:

    git clone https://github.com/rahul4507/Bynry_Gas_Utility_Service.git
  2. Navigate to the project directory:

    cd your_project_dir
  3. Create a virtual environment:

    python -m venv env
  4. Activate the virtual environment:

    On Windows:

    env\Scripts\activate

    On Unix or MacOS:

    source env/bin/activate
  5. Install the requirements:

    pip install -r requirements.txt

Database Setup

  1. Install PostgreSQL and create a new database.

  2. Update the DATABASES setting in settings.py:

    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.postgresql',
            'NAME': 'yourdatabase',
            'USER': 'yourusername',
            'PASSWORD': 'yourpassword',
            'HOST': 'localhost',
            'PORT': '5432',
        }
    }
  3. Run migrations:

    python manage.py migrate

Running the Project

  1. Start the Django development server:

    python manage.py runserver
  2. Open your web browser and navigate to http://localhost:8000.

Sample User Creds for checking

username = omkar password = User@123

About

This application allow customers to submit service requests online. Which includes the ability to select the type of service request, provide details about the request, and attach files. And it also provides an interface to track the requests of customer.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published