Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 854 Bytes

File metadata and controls

47 lines (36 loc) · 854 Bytes

django-crud-dynamic-tables-forms-and-urls

This is python development environment. In order to run and test please follow.

Python Environment Setup

Please make sure you have python3, and pip installed.

MacOs

brew install python3

brew install python3-pip 
# or
brew install python-pip

Linux

sudo apt-get update install python3
sudo apt-get install python3

sudo apt-get install python3-pip
# or
sudo apt-get install python-pip

Confirm installation

python3 --version
pip --version

if you already have installed please skip above steps.

  1. Create Virtual environment and install requirements by
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
  1. Run development server python3 manage.py runserver

  2. Visit http://127.0.0.1:8000