1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/FastAPI_ynh.git synced 2024-09-03 18:36:00 +02:00
fastapi_ynh/manifest.toml

66 lines
1.4 KiB
TOML
Raw Normal View History

2023-11-28 13:20:48 +01:00
#:schema https://raw.githubusercontent.com/YunoHost/apps/master/schemas/manifest.v2.schema.json
packaging_format = 2
id = "fastapi"
name = "my_FastAPI_app"
2023-12-01 15:47:37 +01:00
description.en = "Custom Web app to run a FastAPI program written in Python"
description.fr = "Une application web personnalisée pour faire tourner une application FastAPI écrite en Python"
2023-11-28 13:20:48 +01:00
2023-12-16 09:32:26 +01:00
version = "1.0~ynh2"
2023-11-28 13:20:48 +01:00
maintainers = ["leonarf"]
2023-11-28 13:20:48 +01:00
[upstream]
license = "GPL-3.0-or-later"
code = "https://github.com/leonarf/FastAPI_ynh"
2023-11-28 13:20:48 +01:00
[integration]
yunohost = ">= 11.2.5"
2023-11-28 13:20:48 +01:00
architectures = "all"
multi_instance = true
2023-12-15 20:36:45 +01:00
ldap = "not_relevant"
2023-12-15 20:36:45 +01:00
sso = "not_relevant"
2023-12-15 20:36:45 +01:00
2023-11-28 13:20:48 +01:00
disk = "50M"
2023-12-01 15:48:06 +01:00
ram.build = "350M"
2023-11-28 13:20:48 +01:00
ram.runtime = "50M"
[install]
[install.domain]
type = "domain"
[install.path]
type = "path"
default = "/api"
2023-11-28 13:20:48 +01:00
[install.init_main_permission]
type = "group"
default = "visitors"
[install.password]
2023-12-04 07:19:43 +01:00
help.en = "Password that you will need to upload your code on YunoHost"
2023-12-16 09:31:42 +01:00
help.fr = "Le mot de passe que vous utiliserez pour téléverser votre code sur YunoHost"
type = "password"
2023-11-28 13:20:48 +01:00
[resources]
[resources.system_user]
allow_sftp = true
2023-12-05 11:27:14 +01:00
allow_ssh = true
home = "/home/yunohost.app/__APP__"
2023-11-28 13:20:48 +01:00
[resources.install_dir]
2023-11-28 13:20:48 +01:00
[resources.data_dir]
dir = "/home/yunohost.app/__APP__"
2023-11-28 13:20:48 +01:00
[resources.permissions]
main.url = "/"
[resources.ports]
[resources.apt]
packages = "python3-dev, python3-pip, python3-venv"