1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/my_webapp_ynh.git synced 2024-09-03 19:46:26 +02:00

Remove files

This commit is contained in:
Éric Gaspar 2023-02-04 21:30:30 +01:00
parent 1c77b1a6f8
commit 99a41f5392
5 changed files with 0 additions and 208 deletions

View file

@ -1,120 +0,0 @@
;; Test complet
; Manifest
domain="domain.tld"
path="/path"
with_sftp=1
password="myreallystrengthpassword"
is_public=1
phpversion="7.4"
with_mysql=1
; Checks
pkg_linter=1
setup_sub_dir=1
setup_root=1
setup_nourl=0
setup_private=1
setup_public=1
upgrade=1
upgrade=1 from_commit=a050e55533ae7bbb63fce44fd1508ad78b8a645c
backup_restore=1
multi_instance=1
port_already_use=0
change_url=1
;; Test without sftp
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password=""
is_public=1
phpversion="7.4"
with_mysql=1
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test without mysql
; Manifest
domain="domain.tld"
path="/path"
with_sftp=1
password="myreallystrengthpassword"
is_public=1
phpversion="7.4"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test without PHP
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password="myreallystrengthpassword"
is_public=1
phpversion="none"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test with PHP7.4
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password="myreallystrengthpassword"
is_public=1
phpversion="7.4"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test with PHP8.0
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password="myreallystrengthpassword"
is_public=1
phpversion="8.0"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test with PHP8.1
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password="myreallystrengthpassword"
is_public=1
phpversion="8.1"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;; Test with PHP8.2
; Manifest
domain="domain.tld"
path="/path"
with_sftp=0
password="myreallystrengthpassword"
is_public=1
phpversion="8.2"
with_mysql=0
; Checks
setup_sub_dir=1
upgrade=1
backup_restore=1
;;; Options
Email=
Notification=change
;;; Upgrade options
; commit=a050e55533ae7bbb63fce44fd1508ad78b8a645c
name=May 26, 2019
manifest_arg=domain=DOMAIN&path=PATH&password=myreallystrengthpassword&is_public=1&with_mysql=1

View file

@ -1,85 +0,0 @@
{
"name": "My Webapp",
"id": "my_webapp",
"packaging_format": 1,
"description": {
"en": "Custom Web app with SFTP access to serve static (HTML, CSS, JS) and PHP files",
"fr": "Application Web personnalisée avec accès SFTP pour servir des fichiers statiques (HTML, CSS, JS) et PHP"
},
"version": "1.0~ynh12",
"url": "https://github.com/YunoHost-Apps/my_webapp_ynh",
"upstream": {
"license": "GPL-3.0-only",
"code": "https://github.com/YunoHost-Apps/my_webapp_ynh"
},
"license": "GPL-3.0-only",
"maintainer": {
"name": "",
"email": ""
},
"previous_maintainers": [{
"name": "Maniack Crudelis",
"email": "maniackc_dev@crudelis.fr"
}],
"requirements": {
"yunohost": ">= 11.0.9"
},
"multi_instance": true,
"services": [
"nginx",
"php7.4-fpm",
"mysql"
],
"arguments": {
"install" : [
{
"name": "domain",
"type": "domain"
},
{
"name": "path",
"type": "path",
"example": "/site",
"default": "/site"
},
{
"name": "with_sftp",
"type": "boolean",
"ask": {
"en": "Do you need a SFTP access?",
"fr": "Avez-vous besoin d'un accès SFTP ?"
},
"default": true
},
{
"name": "password",
"type": "password",
"optional": true
},
{
"name": "is_public",
"type": "boolean",
"default": true
},
{
"name": "phpversion",
"type": "string",
"ask": {
"en": "Choose a PHP version you want to use for your app",
"fr": "Choisissez une version PHP que vous souhaitez utiliser pour votre application"
},
"choices" : ["none", "7.3", "7.4", "8.0", "8.1", "8.2"],
"default" : "7.4"
},
{
"name": "with_mysql",
"type": "boolean",
"ask": {
"en": "Do you need a MySQL database?",
"fr": "Avez-vous besoin d'une base de données MySQL ?"
},
"default": false
}
]
}
}

View file

@ -12,9 +12,6 @@ maintainers = []
[upstream]
license = "GPL-3.0-only"
code = "https://github.com/YunoHost-Apps/my_webapp_ynh"
website = "https://github.com/YunoHost-Apps/my_webapp_ynh"
cpe = "???" # FIXME: optional but recommended if relevant, this is meant to contain the Common Platform Enumeration, which is sort of a standard id for applications defined by the NIST. In particular, Yunohost may use this is in the future to easily track CVE (=security reports) related to apps. The CPE may be obtained by searching here: https://nvd.nist.gov/products/cpe/search. For example, for Nextcloud, the CPE is 'cpe:2.3:a:nextcloud:nextcloud' (no need to include the version number)
fund = "???" # FIXME: optional but recommended (or remove if irrelevant / not applicable). This is meant to be an URL where people can financially support this app, especially when its development is based on volunteers and/or financed by its community. YunoHost may later advertise it in the webadmin.
[integration]
yunohost = ">= 11.1.5"