Skip to content

Travel Partner is an innovative online platform designed to provide customers with a seamless travel booking experience.

Notifications You must be signed in to change notification settings

codx-ak/Travel-Partner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Travel-Partner

Project Installation

Make sure you refer to the django version you are using. A quick way to start a new django project is to run the following command:

  • Install Django:
pip install django
  • Install Python Pipenv:
pip install pipenv
  • Go to your desired development folder and create a new django project:
django-admin startproject Codemonk && cd Codemonk
  • Install Django on you virtual environment.
pipenv install django
  • Install Requirements
pip install requirements.txt
  • Activate your new virtual environment:
pipenv shell
  • create a new django App:
python manage.py startproject Travel
  • Add Travel to INSTALLED_APPS in you new Django Project.
INSTALLED_APPS = [
    ...,
    'Travel',
    ...,
]
  • Perform database migrations:
python manage.py migrate
  • Add Django SuperUser and follow the prompts.
python manage.py createsuperuser
  • Run your project:
python manage.py runserver
  • Navigate to Project root view assigned in your project urlpatterns setting (typically http:https://127.0.0.1:8000/ if you followed this installation guide).
  • Use your superuser credentials to login.

Make Changes

Settings.py {

Billing Process
-----------------

    EMAIL_HOST_USER =  ' YOUR MAIL ID'
    EMAIL_HOST_PASSWORD = 'MAIL PASSWORD '



Storage of the project
------------------------

    CLOUDINARY_STORAGE={ "YOUR API KEY "}

}

views.py

{

email process
------------------------

    add_booking():
        from_email = 'Travel Partner <Your Mail ID>'

}

main.html

script file :

    online Chatbot
    -------------------

        kommunicateSettings = "Your API Key";

Releases

No releases published

Packages

No packages published