Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 649 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 649 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

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