Skip to content

Commit e367b85

Browse files
minor fix
1 parent f28f5c9 commit e367b85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/learning-paths/servers-and-cloud-computing/django-on-gcp/django_application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ django-admin startapp api
2828
```
2929
You now have a Django project skeleton with all required libraries installed for database, cache, and API support.
3030

31-
### Enable Django Apps
31+
### Enable Django Apps
3232
Django must be told which components are active. We enable the REST framework and the API app so that Django can expose HTTP endpoints.
3333
Edit `django_api/settings.py` and add 'rest_framework' and 'api' to INSTALLED_APPS. Set DEBUG to False. Finally add '*' to ALLOWED_HOSTS.
3434

0 commit comments

Comments
 (0)