mirror of
https://github.com/YunoHost-Apps/kiwiirc_ynh.git
synced 2024-09-03 19:35:59 +02:00
Add src link
This commit is contained in:
parent
2abfcd66cd
commit
d468204e4f
5 changed files with 36 additions and 11 deletions
6
conf/app.src
Normal file
6
conf/app.src
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
SOURCE_URL=https://github.com/kiwiirc/kiwiirc/releases/download/v1.5.0/kiwiirc_v1.5.0.zip
|
||||||
|
SOURCE_SUM=c7b31b2a92b173db4a3878d95aa74c8eb796e7b4d5600a80a00a73d80aa12ada
|
||||||
|
SOURCE_SUM_PRG=sha256sum
|
||||||
|
SOURCE_FORMAT=zip
|
||||||
|
SOURCE_IN_SUBDIR=true
|
||||||
|
SOURCE_FILENAME=
|
|
@ -1,21 +1,31 @@
|
||||||
{
|
{
|
||||||
"windowTitle": "Kiwi IRC - The web IRC client",
|
"windowTitle": "Kiwi IRC - The web IRC client",
|
||||||
"startupScreen": "customServer",
|
"startupScreen": "welcome",
|
||||||
"kiwiServer": "http://example.com/webirc/kiwiirc/",
|
"kiwiServer": "https://localdev.clients.kiwiirc.com/webirc/kiwiirc/",
|
||||||
"restricted": false,
|
"restricted": false,
|
||||||
"theme": "default",
|
"theme": "Default",
|
||||||
"themes": [
|
"themes": [
|
||||||
{ "name": "Default", "url": "static/themes/default.css" }
|
{ "name": "Default", "url": "static/themes/default" },
|
||||||
|
{ "name": "Dark", "url": "static/themes/dark" },
|
||||||
|
{ "name": "Coffee", "url": "static/themes/coffee" },
|
||||||
|
{ "name": "GrayFox", "url": "static/themes/grayfox" },
|
||||||
|
{ "name": "Nightswatch", "url": "static/themes/nightswatch" },
|
||||||
|
{ "name": "Osprey", "url": "static/themes/osprey" },
|
||||||
|
{ "name": "Radioactive", "url": "static/themes/radioactive" },
|
||||||
|
{ "name": "Sky", "url": "static/themes/sky" },
|
||||||
|
{ "name": "Elite", "url": "static/themes/elite" }
|
||||||
],
|
],
|
||||||
"startupOptions" : {
|
"startupOptions" : {
|
||||||
"server": "irc.freenode.net",
|
"server": "chat.freenode.net",
|
||||||
"port": 6697,
|
"port": 6697,
|
||||||
"tls": true,
|
"tls": true,
|
||||||
"channel": "",
|
"channel": "#yunohost",
|
||||||
"nick": ""
|
"nick": ""
|
||||||
},
|
},
|
||||||
"embedly": {
|
"embedly": {
|
||||||
"key": ""
|
"key": ""
|
||||||
},
|
},
|
||||||
"plugins": []
|
"plugins": [
|
||||||
|
{ "name": "customise", "url": "static/plugins/customise.html" }
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -49,6 +49,15 @@ ynh_app_setting_set --app=$app --key=domain --value=$domain
|
||||||
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
ynh_app_setting_set --app=$app --key=path --value=$path_url
|
||||||
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
ynh_app_setting_set --app=$app --key=is_public --value=$is_public
|
||||||
|
|
||||||
|
#=================================================
|
||||||
|
# FIND AND OPEN A PORT
|
||||||
|
#=================================================
|
||||||
|
ynh_script_progression --message="Configuring firewall..." --time --weight=1
|
||||||
|
|
||||||
|
# Find an available port
|
||||||
|
port=$(ynh_find_port --port=8095)
|
||||||
|
ynh_app_setting_set --app=$app --key=port --value=$port
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -56,7 +65,7 @@ ynh_script_progression --message="Setting up source files..." --weight=2
|
||||||
|
|
||||||
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
|
||||||
# Download, check integrity, uncompress and patch the source from app.src
|
# Download, check integrity, uncompress and patch the source from app.src
|
||||||
mv ../sources/dist "$final_path"
|
ynh_setup_source --dest_dir="$final_path"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# NGINX CONFIGURATION
|
# NGINX CONFIGURATION
|
||||||
|
|
|
@ -65,7 +65,7 @@ ynh_system_user_create --username=$app
|
||||||
#=================================================
|
#=================================================
|
||||||
# RESTORE USER RIGHTS
|
# RESTORE USER RIGHTS
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Restoring user rights..."
|
ynh_script_progression --message="Restoring user rights..." --weight=1
|
||||||
|
|
||||||
# Restore permissions on app files
|
# Restore permissions on app files
|
||||||
chown -R $app:$app $final_path
|
chown -R $app:$app $final_path
|
||||||
|
|
|
@ -89,7 +89,7 @@ ynh_system_user_create --username=$app
|
||||||
#=================================================
|
#=================================================
|
||||||
# SECURE FILES AND DIRECTORIES
|
# SECURE FILES AND DIRECTORIES
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Securing files and directories..."
|
ynh_script_progression --message="Securing files and directories..." --weight=1
|
||||||
|
|
||||||
# Set permissions on app files
|
# Set permissions on app files
|
||||||
chown -R $app:$app $final_path
|
chown -R $app:$app $final_path
|
||||||
|
|
Loading…
Reference in a new issue