Skip to content

Archeeyadav/SearchEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SearchEngine

Search Data

Requirements

  • Python (version 3.9)
  • Django (version 4.2.5)

Installation

  1. Clone the repository:

    git clone https://github.com/Archeeyadav/SearchEngine.git
    cd SearchEngine
  2. Create a virtual environment and activate it:

    python -m venv env
    source env/bin/activate
  3. Install project dependencies:

    pip install -r requirements.txt
  4. Migrate the database:

    python manage.py migrate
  5. Start the development server:

    python manage.py runserver

Load Default Data

To populate your project's database with default data, you can use the following commands:

  1. Access the Django shell:

    python manage.py shell
  2. In the Python shell, run the following commands to load default data:

    from user.dump_data import load_data
    load_data()

This will populate your database with default data if it's empty.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published