-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapps.py
41 lines (29 loc) · 1.29 KB
/
apps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from django.apps import AppConfig
class ForgeConfig(AppConfig):
# ! function: home app that handles general site configuration and
# ! houses generic templates. also handles home pages
name = 'forge'
class MachineUsageConfig(AppConfig):
# ! function: App that handles any machine usage function
# ! or view
name = 'machine_usage'
class MachineManagementConfig(AppConfig):
# ! function: App that handles all of the machine
# ! funcions or views. Also houses the model information for
# ! all machines
name = 'machine_management'
class MyForgeConfig(AppConfig):
# ! function: App that handles all of the myforge elements
name = 'myforge'
class UserManagementConfig(AppConfig):
# ! function: App that handles all user functions and data storage
name = 'user_management'
class APIConfig(AppConfig):
# ! function: App that handles all interactions with non user requests
name = 'apis'
class BusinessConfig(AppConfig):
# ! function: App that handles all buisness operations with users
name = 'business'
class DataManagementConfig(AppConfig):
# ! function: App that handles all interactions with octoprint information
name = 'data_management'