AnuragQ / FindYourGuide

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FindYourGuide

Setting Up and Running the Project

Prerequisites

  1. Python:

  2. Virtual Environment:

    • It's recommended to use a virtual environment to isolate project dependencies.
      # Create a virtual environment
      python -m venv venv
      
      # Activate the virtual environment
      source venv/bin/activate  # On Unix-based systems
      .\venv\Scripts\activate  # On Windows
  3. Install Dependencies:

    • Install Django using pip within your virtual environment.
      pip install django
      pip install pillow
      pip install stripe
  4. Configure:

    python manage.py migrate
    # To access admin site
    python manage.py createsuperuser
  5. Run Server:

    python manage.py runserver

About


Languages

Language:HTML 70.4%Language:CSS 17.9%Language:Python 10.7%Language:JavaScript 1.1%