diff --git a/atom.xml b/atom.xml index 3b3cefe5d3..50fa31d400 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@
The options
dict have all available options with default value. If you want to set a value to requered and need to be set from user before it start the addon, set it to null.
The schmema
look like the options
but describe how we should validate the user input.
The options
dict have all available options with default value. If you want to set a value to requered and need to be set from user before it start the addon, set it to null. We support arrays for single deeps.
{
+ "message": "custom things",
+ "logins": [
+ { "username": "beer", "password": "123456" },
+ { "username": "cheep", "password": "654321" }
+ ],
+ "random": ["haha", "hihi", "huhu", "hghg"],
+ "link": "http://blebla.com/"
+}
+
+The schmema
look like the options
but describe how we should validate the user input. For example above:
{
+ "message": "str",
+ "logins": [
+ { "username": "str", "password": "str" }
+ ],
+ "random": ["str"],
+ "link": "url"
+}
+
+We support:
+Default you can use fullchain.pem
and privkey.pem
from /ssl
for you stuff. Your SSL addon should also create default this files.
[Placeholder]
+Add a repository.json
to root of your git repository with:
{
+ "name": "Needed, Name of repository",
+ "url": "url to website (optional)",
+ "maintainer": "(optional) Pascal Vizeli <pvizeli@syshack.ch>"
+}
+
+