Skip to content

kasipavankumar/boards

Repository files navigation

Discuss Boards

Responsive discussion forums built with Django.

Build Status

Online discussion forums to discuss about programming & technology related topics. You can create an account and get involved with the discussions.

Usage

In case you want to consume the code or contribute to this repository, you might want to run this locally on your computer. Follow the steps below to do so:

Requirements

  1. Python 3.7
  2. pipenv
# Install pipenv
1. pip install pipenv

# Create a directory called boards
2. mkdir boards

# cd to it
3. cd boards

# Clone this repository
3. git clone https://github.com/code-plus-coffee/boards.git

# After cloning, your project structure should be:
# boards        ← Outer directory
#   → boards    ← Root directory of the project

# cd one level back to boards
4. cd ..

# Create an virutal environment
5. virtualenv .

# Activate the virtual environment
6. \scripts\activate

# cd to project's root directory
7. cd boards

# Install the dependencies using requirements.txt
8. pip install -r requirements.txt

# Start the local development server
# Default: localhost:8000 or 127.0.0.1:8000
9. python manage.py runserver

Credits

This project is fully based on the tutorial provided at SimpleIsBetterThanComplex. I would like to thank @vitorfs for comprehensive & informative tutorial.

Code Plus Coffee • 2020