Skip to content

Example for e-commerce catalog API with basic CRUD operations built with Django and Django REST frameworks

License

Notifications You must be signed in to change notification settings

niki4/py_webapi_django_example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Example of Web API for some e-commerce catalog.

The code is pretty short and declarative, as the Django and Django REST Framework both takes care on standard ORM, UI, serialization and Web CRUD logic.

Installation:

Just clone the repo from github, then create and activate new virtual environment in cloned folder on local disk:

python3 -m venv ./venv
source venv/bin/activate

Make sure you have Python 3 as your interpreter (since Django 2.0 doesn't support Python 2 anymore).

(venv):$ python --version
Python 3.5.2

Install the project requirements.

pip install --upgrade pip
pip install -r requirements.txt

Now you have to "initialize" the db (that's manage.py migrate command for). In order to ensure the source code doesn't contain any sensitive data (in our case it's DJANGO_SECRET_KEY), we must provide it before we can run the manage.py.

For the convenience, you may store setting in your system variable as it shown below:

export DJANGO_SECRET_KEY='blah'
python manage.py migrate

Dynamic set up the server specific settings provided by the django-configurations plugin.

Run:

If you did the export of DJANGO_SECRET_KEY as described above, you could simply run the server:

python manage.py runserver

However, if you aren't comfortable to set values in system variables, you can provide them explicitly in command line, e.g.:

DJANGO_CONFIGURATION=Dev DJANGO_SECRET_KEY='blah' python ./manage.py runserver

>>>
django-configurations version 2.0, using configuration 'Dev'
Performing system checks...

System check identified no issues (0 silenced).
April 20, 2018 - 20:34:37
Django version 2.0.4, using settings 'mysite.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.

Now simply open the browser with the address http://127.0.0.1:8000/ and explore the API.

About

Example for e-commerce catalog API with basic CRUD operations built with Django and Django REST frameworks

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages