Skip to content

Latest commit

 

History

History
46 lines (23 loc) · 984 Bytes

README.md

File metadata and controls

46 lines (23 loc) · 984 Bytes

StackOverflow Question Search Software

The objective of this assignment is to develop an StackOverflow Question Search system for Organization. A typical workflow for Organization .

Clone the project

Clone the project from Github:

Project Root Directory: `/var/www`

git clone remote url

Create Environment file

Go to the settings folder then create .env file

Note : Like see the .example_env file in project root folder, same veriable copy and paste in .env file on settings folder then update env varible .

Virtual Environment Setup

Create Virtualenv Folder

virtualenv --python=python3.10 Project_dir/.venv

Activate Environment:

source project_venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Apply database migrations

python3 manage.py makemigrations 
python3 manage.py migrate

Create super user

python3 manage.py createsuperuser

Load base data

Load fixtures: