mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add InvenTree/apps.py
This commit is contained in:
parent
5b68d82fa3
commit
1532a0c3a1
12
InvenTree/InvenTree/apps.py
Normal file
12
InvenTree/InvenTree/apps.py
Normal file
@ -0,0 +1,12 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class InvenTreeConfig(AppConfig):
|
||||
name = 'InvenTree'
|
||||
|
||||
def ready(self):
|
||||
|
||||
print("Starting background tasks")
|
||||
pass
|
@ -188,6 +188,7 @@ INSTALLED_APPS = [
|
||||
'build.apps.BuildConfig',
|
||||
'common.apps.CommonConfig',
|
||||
'company.apps.CompanyConfig',
|
||||
'InvenTree.apps.InvenTreeConfig',
|
||||
'label.apps.LabelConfig',
|
||||
'order.apps.OrderConfig',
|
||||
'part.apps.PartConfig',
|
||||
|
Loading…
Reference in New Issue
Block a user