-
Copy example maker files to new directory for your company
cp -a src/makers/__example__/. src/makers/yourMakerName
-
Update or replace the hotspot icon in your directory (you may have multiple)
src/makers/yourMakerName/hotspot.svg
-
Update the contents of these files in this order
src/makers/{makerName}/antennas.ts
src/makers/{makerName}/hotspots.ts
src/makers/{makerName}/index.ts
-
Update
src/makers/index.ts
- Import your maker
import yourMakerName from './yourMakerName'
- Add your maker to the main Makers object
export const Makers: Record<string, { id: number; supportEmail: string }> = { makerA, makerB, theRest, yourMakerName, }
- Add your antennas
export const AntennaModels = { ...makerA.antennas, ...makerB.antennas, ...theRest.antennas, ...yourMakerName.antennas, }
- Add your models
export const HotspotMakerModels = { ...makerA.hotspots, ...makerB.hotspots, ...theRest.hotspots, ...yourMakerName.hotspots, }
- Import your maker
makers
Folders and files
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||