MaxItUp is a Mac setup tool to create a setup script for newly formatted Mac devices.
This repository serves as the data container for MaxItUp!
The json file contains two arrays for categories and items, changing this file will change the content in website
{
"categories": [],
"items": []
}To Add/update or delete categories, please use the following format:
{
"id": "Category unique identifier (string)",
"name": "Category name (string)",
"order": "Category order (int)"
}To Add/update or delete items, please use the following format:
{
"id": "Item unique identifier (string)",
"type": "Item type (cask, brew, gem, os_settings, ...) (string)",
"name": "Item name (string)",
"description": "Item description (optional string)",
"category": "Category unique identifier (should be in categories array, string)",
"download_url": "URL to download item (optional string)",
"code": "Item code"
}When adding categories/items, please consider adding icons/background images for them
- Image name:
category.id - Image format :
.svg - Location
/assets/categories
- Image name:
item.id - Image format :
.png - Location
/assets/items
Special thanks to:
- Bashar Ghadanfar coming up with the name MaxItUp! and designing the project's visual identity.
MaxItUp is released under the MIT license. See LICENSE for more information.