Skip to content

purkayasta/StackOverFlowLite

Repository files navigation

Questions Overflow

Description

StackOverflow-Lite is a question answering webapp (A lite version of StackOverFlow)

Home Screen:

0

Question Detail Screen:

1

Login Screen:

2

Motivation:

  1. What if Stack Overflow was born before ajax or single page app :D
  2. Also I wanted some hands of experience in Django :p

Installation

Installing the latest stable version is simple. But make sure first you have python install on your system. You can use virtualenv or any wrapper to create Virtual Environment. I have used pipenv.

$ pip install pipenv

Check this for more information about pipenv

Install directly from git.

$ git clone https://github.com/purkayasta/StackOverFlowLite.git
$ cd StackOverFlowLite
$ pipenv install

Make sure delete all the migrations in the migration folder and do database migration.

$ python manage.py makemigrations
$ python manage.py migrate

Run the app by writing this command.

$ python manage.py runserver