diff options
| author | Bobby <[email protected]> | 2022-07-20 06:18:14 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-07-20 06:18:14 +0530 |
| commit | f44f1061a6f32eaa5dd1a42742f92e776641e97f (patch) | |
| tree | 0df4a91c455aed6c9c05640a7fe979aa25c19686 /blog/apps.py | |
| parent | adf558afea0bcaa7dea0cd7855cafe3bf5717d4e (diff) | |
| download | thatcomputerscientist-f44f1061a6f32eaa5dd1a42742f92e776641e97f.tar.xz thatcomputerscientist-f44f1061a6f32eaa5dd1a42742f92e776641e97f.zip | |
Basic Hello World page with Debug Disabled
Diffstat (limited to 'blog/apps.py')
| -rw-r--r-- | blog/apps.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/blog/apps.py b/blog/apps.py new file mode 100644 index 00000000..94788a5e --- /dev/null +++ b/blog/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class BlogConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'blog' |
