forked from silexlabs/Silex
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
106 lines (105 loc) · 5.02 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "Silex",
"description": "Hackable website builder",
"logo": "https://user-images.githubusercontent.com/715377/45088401-2944d900-b109-11e8-8bae-54cf87724de9.png",
"repository":"https://github.com/silexlabs/Silex.git",
"buildpacks": [
{
"url": "heroku/jvm"
},
{
"url": "heroku/nodejs"
}
],
"env": {
"SERVER_URL": {
"description": "The URL of your new Silex instance on heroku. E.g. 'https://app-name.herokuapp.com'"
},
"SILEX_SESSION_SECRET": {
"description": "[Optional] Secret key used to encrypt cookies",
"required": false
},
"GITHUB_CLIENT_ID": {
"description": "[Optional] Github app ID. <a href='https://github.com/settings/developers'>Create an app here</a> with the param 'Authorization callback URL' set to the URL of your new Silex instance on heroku + '/github/oauth_callback'. E.g. 'https://app-name.herokuapp.com/github/oauth_callback'",
"required": false
},
"GITHUB_CLIENT_SECRET": {
"description": "[Optional] Github app secret. <a href='https://github.com/settings/developers'>Create an app here</a> with the param 'Authorization callback URL' set to the URL of your new Silex instance on heroku + '/github/oauth_callback'. E.g. 'https://app-name.herokuapp.com/github/oauth_callback'",
"required": false
},
"ENABLE_FTP": {
"description": "[Optional] Set this value to 'true' if you want your users to be able to use FTP to open/save/publish. Leave blank to disable.",
"required": false
},
"ENABLE_SFTP": {
"description": "[Optional, default is 'true'] Set this value to 'false' if you do not want your users to be able to use SFTP to open/save/publish. Leave blank to disable.",
"required": false
},
"ENABLE_WEBDAV": {
"description": "[Optional] Set this value to 'true' if you want your users to be able to use webdav to open/save/publish. Leave blank to disable. Webdav can be used to access NextCloud files.",
"required": false
},
"DROPBOX_CLIENT_ID": {
"description": "[Optional] Dropbox app key. Set this value if you want your users to be able to open/save/publish to their Dropbox account. Leave blank to disable. You will need to <a href='https://www.dropbox.com/developers/apps'>create an app here</a> with a 'Redirect URIs' set to the URL of your new Silex instance on heroku + '/ce/dropbox/oauth_callback'. E.g. 'http://app-name.herokuapp.com/ce/dropbox/oauth_callback'",
"required": false
},
"DROPBOX_CLIENT_SECRET": {
"description": "[Optional] Dropbox app secret. Set this value if you want your users to be able to open/save/publish to their Dropbox account. Leave blank to disable. You will need to <a href='https://www.dropbox.com/developers/apps'>create an app here</a> with a 'Redirect URIs' set to the URL of your new Silex instance on heroku + '/ce/dropbox/oauth_callback'. E.g. 'http://app-name.herokuapp.com/ce/dropbox/oauth_callback'",
"required": false
},
"SKIP_HOSTING_SELECTION": {
"description": "[Optional] Skip the hosting selection dialog. This is a publication setting. Set this value to true if you want the user to be forced to publish in the first hosting provider you enable. This is useful when you provide hosting to your users.",
"required": false
},
"ENABLE_HOSTING_GH_PAGES": {
"description": "[Optional] Enable Github Pages hosting provider. This is a publication setting. Set this value to true if you want your users to be able to publish to <a href='https://pages.github.com/'>Github Pages</a>.",
"required": false
},
"ENABLE_HOSTING_UNIFILE": {
"description": "[Optional, default is 'true'] Enable the user to select a folder to publish to. This is a publication setting. Set this value to false if you do not want your users to be able to manually select a folder when they try to publsh a website.",
"required": false
}
},
"keywords": [
"online html page builder",
"cloud based open source SaaS",
"free website template builder",
"live web page editor",
"html5 web page editor",
"free html5 editor",
"free website builder with source code",
"free cms for html website",
"free website with html",
"cms open source",
"free online html editors",
"open source online editor",
"silex website",
"silex website builder",
"silex.me",
"open source online website builder",
"silex web",
"free cms editor",
"tuto silex",
"website free builder",
"html5 website builder online",
"silex css",
"cms flash open source",
"website builder with html editor",
"free website builder sites",
"silex cms",
"online website builder open source",
"Create a free website",
"Wix.com open source alternative",
"professional designer",
"webdesigner, CSS web master",
"webmaster CSS made easy",
"open source CMS",
"CSS3 HTML5 HTML 5 javascript editor",
"WYSIWYG",
"creative commons web templates",
"creative templates",
"github",
"silex",
"creative commons"
]
}