Skip to content

nishutosh/Forum-webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Forum Website

A django Forum application .

Installation

  • Create a virtual environment

    virtualenv venv

  • Start virtual environment

    source venv/bin/activate

  • Install requirements

    pip install -r requirements.txt

  • Enable Debug for debugging

    Go to the settings.py file and set the variable DEBUG to True.

  • Migrate DB

    python manage.py makemigrations and python manage.py migrate

  • Running test server, go to the folder with manage.py file and run:

    python manage.py runserver

    This will run the server at localhost.

  • Running tests

    python manage.py test