Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 688 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 688 Bytes

django-sample-app

Overview

This sample application is intended to allow users to find and sign-up as mentors.

It is a Python/Django web application that follows in line with the official tutorial

Pipenv is used for package management

Setup

  1. Fork/clone this repo
  2. Install Python 3.7 or later
  3. Install pipenv
  4. Run pipenv install

Run the App

  1. Run the following commands:
pipenv shell
python manage.py migrate
python manage.py runserver
  1. Visit localhost:8000