May 2020
Intermediate to advanced
404 pages
10h 52m
English
Remember that each Django project is composed of several Django apps working together. We will now create a Django app in this project that will consume the order management system API and provide a UI to see the content contained in the API database. This is important for verifying that the Dialogflow agent is properly working.
Switch to the ordersui directory using the cd command in a new terminal or command prompt. Then, use the following command to create an app:
python manage.py startapp apiui
This will create a directory within the ordersui Django project app directory with the following structure:
apiui/ | -- __init__.py| -- admin.py| -- apps.py| -- migrations/ ...
Read now
Unlock full access