-
Notifications
You must be signed in to change notification settings - Fork 17
5. Add iris app to INSTALLED_APPS
Katie House edited this page Sep 14, 2020
·
1 revision
Whenever a new app is installed or created, we must add it to the INSTALLED_APPS
array in mysite/settings.py
.
Here is what it will look like after iris
is added:
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'iris',
]
- Install Django
- Create Django Project
- Run your project for the first time
- Create a Django App
- Add app to INSTALLED_APPS
- Add the landing page to the app
- Make the landing page fancy with Bootstrap
- Create a machine learning model with the Iris dataset
- Create Django form to take in user input and send back model prediction
- Update model prediction with text and an image
- Define the SQLite Database Schema
- Use admin mode to see edit database
- Save Prediction data to SQLite database