> [!kanban]+ [[Obsidian TTRPG Tutorials]] / [[Plugin Tutorials]] / [[TTRPG-Convert-CLI]] / [[TTRPG-Convert-CLI Templates]] > - [[Getting Started]] > - ![[Pasted image 20230527003751.jpg|hsmall+wsmall+center]] > - [[Plugin Tutorials]] > - ![[Pasted image 20230527184201.jpg|hsmall+wsmall+center]] > - [[Community Supported Games]] > - ![[Pasted image 20230527001506.jpg|hsmall+wsmall+center]] > - [[Obsidian TTRPG Tutorials/Templates/Templates\|Templates]] > - ![[Pasted image 20230530220438.jpg|hsmall+wsmall+center]] > - [[Community and Support]] > - ![[Pasted image 20230527005303.jpg|hsmall+wsmall+center]] > [!infobox] > # ttrpg-convert-cli > ![[TTRPG-Convert-CLI 5e-20240203092033415.webp|cover hsmall]] > > Links | > ---| > ⚙️[Github Site](https://github.com/ebullient/ttrpg-convert-cli) | > 📄[Official Documentation](https://github.com/ebullient/ttrpg-convert-cli/blob/main/README.md)) | > 🗺️[Source Map](https://github.com/ebullient/ttrpg-convert-cli/blob/main/docs/sourceMap.md#source-name-mapping-for-5etools)) | > 🆘[Support](https://discord.com/channels/925322340995313686/1118630475313975367) 🐛[Raise Issue](https://github.com/ebullient/ttrpg-convert-cli/issues) | > 🍵[Support Ebulient with Coffee](https://www.buymeacoffee.com/ebullient) | > > Tutorials | > ---| > Step1: [[TTRPG-Convert-CLI 5e\|Setup]] | > Step2: [[TTRPG-Convert-CLI Config File\|Config File Creation]] | > Step3: [[TTRPG-Convert-CLI Templates\|Templates]] | > **Step5: [[TTRPG-Convert-CLI Homebrew Content\|Homebrew Content]]** | > Step 6: [[TTRPG-Convert-CLI Custom Content\|Custom Content]] | > Alternative: [TTRPG Convert CLI for MacOS](https://youtu.be/O66n448NG4M) | This page walks through how to use the CLI tool to bring in Homebrew content (aka 3rd party content). ![](https://youtu.be/d0OkmZWTZyc) ## Step 1 - Clone the Homebrew Repo Create a clone of the Homebrew Repo. - Navigate to your CLI/Bin folder. - In the Address Bar type ÇMD - Paste the command below into your Command Prompt. ```` git clone --depth 1 https://github.com/TheGiddyLimit/homebrew ```` ## Step 2 - Update your CLI Command Update you CLI command to include the additional JSON sources that you would like to use. ##### Example ```` ttrpg-convert.exe --index -o dm -c dm-sources-josh.json 5etools-mirror-1.github.io/data "homebrew/creature/Kobold Press; Tome of Beasts.json" ```` In this example I want to include Tome of Beasts in the export. I need to tell the command where the file lives. The files will now be in your BIN folder. .../bin/homebrew/creature/Kobold Press; Tome of Beasts.json I need to add the information above, but starting at the bin folder. So the following needs to be added to the command line. "homebrew/creature/Kobold Press; Tome of Beasts.json" #### Step 4 - Update your Config File In the From section of your [[TTRPG-Convert-CLI Config File]] you need to add the content you would like created. ```` { "from": [ "DMG", "PHB", "MM", "ToB" ], ```` Here you can see I haved added 'ToB' to the From section. ##### Where to Get the Content Names/Acronyms You need to explore the new Homebrew folder to find data-sources. ...\bin\homebrew\<sub-folder>\<*.json files> In the example used, I want to bring in Tome of Beasts. So I locate the Tome of Beasts json file in. ````...\bin\homebrew\creature\Kobold Press; Tome of Beasts.json```` I open that file and look for the `json` field. ![[TTRPG-Convert-CLI Homebrew Content-20231210130550478.webp]] The json value is 'ToB' so I need to add 'ToB' to the 'From' section of my configuration file. Save changes to your configuration file and you should now be ready to run the CLI process with the new Homebrew sources.