Skip to content

itsgokhanyilmaz/qfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

qfinder

Helps you find available username

Prerequisites

You need to install Python 3.6 or up

Getting the project

  1. Create project folder:
mkdir qfinderproject
cd qfinderproject
  1. Clone the project:
git clone https://github.com/GokhanYilmaz44/qfinder.git
  1. Create a virtual environment:
python3 -m venv env

if you are using MAC or Linux:
source env/bin/activate

or Windows OS:
.\env\Scripts\activate
  1. Install all dependencies:
pip install -r requirements.txt
  1. Create migration files:
cd qfinder
python manage.py makemigrations
  1. Apply the migrations:
python manage.py migrate
  1. Provide Initial Website data:
python manage.py loaddata categories.json
python manage.py loaddata websites.json
  1. Run the project server:
python manage.py runserver 0:<any port you want to use>
[by default port is 8000]

Authors