Update to the project https://starbase-nexus.net/
We improved the automation of your yolol projects. Now you don't have to update your code and documentation on starbase-nexus anymore, because we added the support for fetch configs.
If you manage your code in a git repository, you can now add a (or multiple) fetch config json file in your repository and the website will load the latest code and documentation automatically.
It's basicly a json file that contains an uri to a markdown file and a list of scripts that contain a name (optionally) and the uri to the script file.
So when you push a commit to your repository, the latest code will be visible on starbase-nexus.net.
If you have several scripts or projects in one repository, of course you can add as many fetch configs to your repository as you want.
To use this, just create or update your yolol project on starbase-nexus and put the link to the fetch config in it. You will get a parsing preview.
Additional updates:
* added name to yolol script (optional)
* added automatic required yolol chip detection.
* added back buttons for single view pages.
This is an example fetch-config.json
JSON:
{
"docs": "https://raw.githubusercontent.com/WildChild85/yolol-projects/master/flow-control/README.md",
"scripts": [
{
"name": "Animation In/Out",
"uri": "https://raw.githubusercontent.com/WildChild85/yolol-projects/master/flow-control/flow-control-animation-in-out.yolol"
},
{
"name": "Animation In",
"uri": "https://raw.githubusercontent.com/WildChild85/yolol-projects/master/flow-control/flow-control-animation-in.yolol"
},
{
"name": "Animation Out",
"uri": "https://raw.githubusercontent.com/WildChild85/yolol-projects/master/flow-control/flow-control-animation-out.yolol"
},
{
"name": "Flow Control",
"uri": "https://raw.githubusercontent.com/WildChild85/yolol-projects/master/flow-control/flow-crontrol.yolol"
}
]
}