Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 417 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 417 Bytes

Django CRUD Project

This is simple implementaion od Django CRUD

Getting Started

Setup project environment with virtualenv and pip.

$ virtualenv project-env
$ source project-env/bin/activate
$ pip install -r requirements.txt

$ cd projectname/
$ cp settings_custom.py.edit settings_custom.py
$ python manage.py migrate
$ python manage.py runserver