* feat: add front image * feat: startech 4post rack * feat: add digitus DN-19 07U-I-OD * feat: add digitus DN-19 07U-I-OD * Revert "feat: add front image" This reverts commit bdd27607f821fa942d40fb01774cab6053f83ada. * fix: change form_factor * feat: add racktype schema * feat: add racktype schema * feat: upload generated known-racks.pickle * fix: change filename * feat: add rack type * refactor: change tests to work with racks * refactor: use the correct device class * fix: rename file correctly * Update racktype.json * fix: add missing desc_units schema property * fix: add missing desc_units value * chore: update readme with rack-types documentation --------- Co-authored-by: Harry <Harry@cadby.co.uk>
41 lines
829 B
Python
41 lines
829 B
Python
import os
|
|
|
|
SCHEMAS = (
|
|
('device-types', 'devicetype.json'),
|
|
('module-types', 'moduletype.json'),
|
|
('rack-types', 'racktype.json'),
|
|
)
|
|
SCHEMAS_BASEPATH = f"{os.getcwd()}/schema/"
|
|
|
|
IMAGE_FILETYPES = (
|
|
'bmp', 'gif', 'pjp', 'jpg', 'pjpeg', 'jpeg', 'jfif', 'png', 'tif', 'tiff', 'webp'
|
|
)
|
|
|
|
COMPONENT_TYPES = (
|
|
'console-ports',
|
|
'console-server-ports',
|
|
'power-ports',
|
|
'power-outlets',
|
|
'interfaces',
|
|
'front-ports',
|
|
'rear-ports',
|
|
'device-bays',
|
|
'module-bays',
|
|
)
|
|
|
|
PRECOMMIT_ALL_SWITCHES = [
|
|
'-a',
|
|
'--all-files',
|
|
'--all'
|
|
]
|
|
|
|
ROOT_DIR = os.path.abspath(os.path.join(os.path.dirname( __file__ ), '..'))
|
|
|
|
KNOWN_SLUGS = set()
|
|
KNOWN_MODULES = set()
|
|
|
|
USE_LOCAL_KNOWN_SLUGS = False
|
|
USE_UPSTREAM_DIFF = True
|
|
|
|
NETBOX_DT_LIBRARY_URL = "https://github.com/netbox-community/devicetype-library.git"
|